:root {
  --navy-950: #06101a;
  --navy-900: #081725;
  --navy-800: #0d2133;
  --navy-700: #12304a;
  --cream: #f7f1e7;
  --cream-2: #efe4d2;
  --gold: #c7a35c;
  --gold-light: #e3cc93;
  --text: rgba(247, 241, 231, 0.92);
  --muted: rgba(247, 241, 231, 0.68);
  --line: rgba(199, 163, 92, 0.28);
  --glass: rgba(255, 255, 255, 0.075);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  --radius: 26px;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--sans);
  color: var(--text);
  background:
    radial-gradient(circle at 80% 8%, rgba(199, 163, 92, 0.24), transparent 34rem),
    radial-gradient(circle at 10% 18%, rgba(255, 255, 255, 0.08), transparent 28rem),
    linear-gradient(135deg, #050c14 0%, #081725 48%, #15151c 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.55), transparent 76%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(120deg, transparent 0 56%, rgba(199, 163, 92, 0.08) 56.1% 56.3%, transparent 56.5%),
    radial-gradient(ellipse at bottom, rgba(0, 0, 0, 0.58), transparent 55%);
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.narrow {
  width: min(820px, calc(100% - 40px));
}

.section-pad {
  padding: clamp(70px, 8vw, 124px) 0;
}

.section-compact {
  padding-top: clamp(36px, 5vw, 72px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 48px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(6, 16, 26, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  min-width: 0;
}

.brand-logo {
  width: 58px;
  height: 46px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  padding: 7px;
  border: 1px solid rgba(199, 163, 92, 0.45);
  border-radius: 14px;
  background: linear-gradient(180deg, #fffaf1, #eadfc9);
  position: relative;
}

.brand-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.brand-logo.missing-logo::after {
  content: "VAG";
  color: #111820;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 0.92rem;
}

.brand-text {
  display: grid;
  line-height: 1.1;
}

.brand-text strong {
  font-family: var(--serif);
  font-size: clamp(1rem, 2vw, 1.25rem);
  letter-spacing: 0.01em;
}

.brand-text small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.74rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link,
.nav-discord {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  transition: 180ms ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--cream);
  background: rgba(255, 255, 255, 0.08);
}

.nav-discord {
  margin-left: 6px;
  color: #111820;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.nav-discord:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--cream);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  border-radius: 999px;
}

.hero {
  min-height: calc(100vh - 75px);
  display: grid;
  place-items: center;
  position: relative;
}

.hero-glow {
  position: absolute;
  width: 360px;
  height: 360px;
  right: 8%;
  top: 18%;
  border-radius: 999px;
  background: rgba(199, 163, 92, 0.18);
  filter: blur(70px);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--cream);
}

h1 {
  margin-bottom: 24px;
  font-family: var(--serif);
  font-size: clamp(3.1rem, 8vw, 6.7rem);
  line-height: 0.93;
  letter-spacing: -0.055em;
}

.page-hero h1 {
  font-size: clamp(2.55rem, 6vw, 5.1rem);
}

h2 {
  margin-bottom: 16px;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.08rem;
}

p {
  color: var(--muted);
  line-height: 1.8;
}

.hero-text,
.page-hero p,
.section-heading p {
  font-size: clamp(1.02rem, 2vw, 1.18rem);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 30px;
}

.hero-actions.centered {
  justify-content: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease, background 180ms ease;
}

.button-primary {
  color: #101820;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
}

.button-primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.38);
}

.button-ghost {
  color: var(--cream);
  border-color: rgba(199, 163, 92, 0.44);
  background: rgba(255, 255, 255, 0.06);
}

.button-ghost:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.1);
}

.button-wide {
  width: 100%;
}

.micro-note {
  margin-top: 18px;
  color: rgba(247, 241, 231, 0.56);
  font-size: 0.9rem;
}

.hero-panel,
.feature-card,
.process-card,
.info-panel,
.action-panel,
.profile-card,
.contact-card,
.legal-box,
.cta-box {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(145deg, rgba(255,255,255,0.105), rgba(255,255,255,0.048));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.hero-panel {
  padding: clamp(24px, 4vw, 36px);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}

.hero-panel::before,
.cta-box::before,
.profile-card::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) - 8px);
  pointer-events: none;
}

.logo-showcase {
  min-height: 185px;
  display: grid;
  place-items: center;
  padding: 28px;
  border-radius: 20px;
  border: 1px solid rgba(199, 163, 92, 0.42);
  background: linear-gradient(180deg, #fffaf1, #eadfc9);
  position: relative;
}

.logo-showcase img {
  max-height: 138px;
  object-fit: contain;
}

.logo-showcase.missing-logo-large::after {
  content: "Visser Advocaten Groep";
  color: #111820;
  font-family: var(--serif);
  font-size: 1.7rem;
  text-align: center;
}

.panel-line {
  width: 100%;
  height: 1px;
  margin: 28px 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero-panel h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.status-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  padding: 10px 14px;
  border-radius: 999px;
  color: rgba(247, 241, 231, 0.8);
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.9rem;
  font-weight: 700;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #76d189;
  box-shadow: 0 0 0 5px rgba(118, 209, 137, 0.12);
}

.section-heading {
  width: min(760px, 100%);
  margin-bottom: 32px;
}

.feature-grid,
.contact-grid,
.process-grid {
  display: grid;
  gap: 18px;
}

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

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

.feature-card,
.contact-card,
.process-card {
  border-radius: 22px;
  padding: 24px;
}

.card-icon,
.process-card span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 15px;
  color: #101820;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  font-weight: 900;
  font-size: 0.92rem;
}

.process-card span {
  border-radius: 999px;
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 22px;
  align-items: stretch;
}

.info-panel,
.action-panel,
.legal-box {
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 38px);
}

.clean-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.clean-list li {
  position: relative;
  padding-left: 28px;
  color: var(--text);
}

.clean-list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 0.65em;
  width: 9px;
  height: 9px;
  rotate: 45deg;
  background: var(--gold);
}

.cta-section {
  padding-top: clamp(38px, 5vw, 76px);
}

.cta-box {
  position: relative;
  overflow: hidden;
  padding: clamp(30px, 5vw, 52px);
  border-radius: var(--radius);
  text-align: center;
}

.cta-box h2 {
  margin-inline: auto;
  max-width: 720px;
}

.cta-box p {
  margin-inline: auto;
  max-width: 650px;
}

.profile-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(240px, 360px) 1fr;
  gap: clamp(26px, 5vw, 52px);
  padding: clamp(24px, 4vw, 42px);
  border-radius: var(--radius);
  align-items: center;
}

.profile-photo {
  min-height: 430px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  border: 1px solid rgba(199, 163, 92, 0.42);
  background: linear-gradient(180deg, #fffaf1, #eadfc9);
  overflow: hidden;
  position: relative;
}

.profile-photo img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.portrait-fallback {
  display: none;
  width: 132px;
  height: 132px;
  place-items: center;
  border-radius: 999px;
  color: #111820;
  background: rgba(17, 24, 32, 0.08);
  border: 1px solid rgba(17, 24, 32, 0.14);
  font-family: var(--serif);
  font-size: 3.4rem;
  font-weight: 700;
}

.profile-photo.missing-photo .portrait-fallback {
  display: grid;
}

.profile-role {
  margin-bottom: 20px;
  color: var(--gold-light);
  font-weight: 800;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.tag-row span {
  padding: 8px 12px;
  border-radius: 999px;
  color: rgba(247, 241, 231, 0.76);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 0.85rem;
  font-weight: 700;
}

.text-link {
  display: inline-flex;
  margin-top: 8px;
  color: var(--gold-light);
  font-weight: 800;
  text-decoration: none;
}

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

.text-muted {
  color: var(--muted);
  font-weight: 700;
}

.legal-box p:last-child,
.action-panel p:last-child,
.feature-card p:last-child,
.contact-card p:last-child,
.process-card p:last-child {
  margin-bottom: 0;
}

.site-footer {
  padding: 34px 20px 42px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.18);
  text-align: center;
}

.footer-inner {
  width: min(900px, 100%);
  margin: 0 auto;
}

.site-footer p {
  margin: 0 0 8px;
  color: rgba(247, 241, 231, 0.68);
  font-size: 0.92rem;
}

.site-footer a {
  color: var(--gold-light);
  font-weight: 800;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 16px;
  font-size: 0.9rem;
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.js .reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero-grid,
  .split-grid,
  .profile-card {
    grid-template-columns: 1fr;
  }

  .feature-grid.three,
  .contact-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero {
    min-height: auto;
  }
}

@media (max-width: 760px) {
  .brand-text small {
    display: none;
  }

  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 10px);
    display: grid;
    gap: 8px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    background: rgba(6, 16, 26, 0.96);
    box-shadow: var(--shadow);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: 180ms ease;
  }

  .site-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-link,
  .nav-discord {
    justify-content: center;
    min-height: 46px;
    margin: 0;
  }

  .container,
  .narrow {
    width: min(100% - 28px, 1120px);
  }

  .feature-grid.three,
  .contact-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .profile-photo,
  .profile-photo img {
    min-height: 330px;
  }
}

@media (max-width: 520px) {
  .site-header {
    padding-inline: 14px;
  }

  .brand-logo {
    width: 52px;
    height: 42px;
  }

  .brand-text strong {
    font-size: 0.98rem;
  }

  h1 {
    font-size: clamp(2.65rem, 14vw, 4.1rem);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .button {
    padding-inline: 18px;
  }

  .logo-showcase {
    min-height: 145px;
  }
}
