:root {
  --brand-gold: #bb9a66;
  --brand-gold-soft: #d9bf97;
  --brand-blue: #0e4b8e;
  --brand-ink: #3b3f42;
  --brand-copy: #5f6468;
  --brand-line: rgba(187, 154, 102, 0.28);
  --brand-surface: #ffffff;
  --brand-soft: #f8f8f0;
  --brand-soft-2: #fcfaf7;
  --brand-shadow: 0 24px 60px rgba(25, 38, 56, 0.12);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --container-width: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "PT Sans", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--brand-ink);
  background:
    radial-gradient(circle at top right, rgba(187, 154, 102, 0.18), transparent 30%),
    linear-gradient(180deg, #fff 0%, var(--brand-soft) 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

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

button,
input,
textarea {
  font: inherit;
}

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

.topbar {
  background: linear-gradient(90deg, #244e82, #0e4b8e);
  color: #fff;
  font-size: 0.94rem;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  min-height: 48px;
}

.topbar-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(16px);
  background: rgba(252, 250, 247, 0.88);
  border-bottom: 1px solid rgba(59, 63, 66, 0.08);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  min-height: 96px;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.brand-logo {
  width: 72px;
  height: 72px;
  padding: 10px;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(187, 154, 102, 0.16), rgba(14, 75, 142, 0.08));
  box-shadow: inset 0 0 0 1px rgba(187, 154, 102, 0.18);
}

.brand-wording {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-wording strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1;
  color: var(--brand-gold);
  letter-spacing: 0.04em;
  text-transform: lowercase;
}

.brand-wording span {
  color: var(--brand-copy);
  font-size: 0.92rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.nav-link {
  padding: 12px 16px;
  border-radius: 999px;
  color: var(--brand-copy);
  transition: 180ms ease;
}

.nav-link:hover,
.nav-link:focus-visible {
  background: rgba(14, 75, 142, 0.08);
  color: var(--brand-blue);
}

.nav-cta {
  margin-left: 8px;
  min-height: 40px;
  padding: 0 18px;
  font-size: 0.85rem;
}

.hero {
  padding: 72px 0 36px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 28px;
  align-items: stretch;
}

.hero-copy,
.hero-panel {
  padding: 34px;
  border-radius: var(--radius-xl);
  background: var(--brand-surface);
  box-shadow: var(--brand-shadow);
  border: 1px solid rgba(187, 154, 102, 0.18);
}

.hero-copy {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(248, 248, 240, 0.9)),
    var(--brand-surface);
}

.hero-panel {
  position: relative;
  overflow: hidden;
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: auto -60px -80px auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(187, 154, 102, 0.2), transparent 68%);
}

.hero-panel-compact {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.eyebrow {
  margin: 0 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--brand-gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.88rem;
}

.hero h1 {
  margin: 0 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.3rem, 4vw, 4rem);
  line-height: 1.04;
  color: var(--brand-ink);
}

.hero p,
.hero li,
.section-text {
  color: var(--brand-copy);
  font-size: 1.08rem;
  line-height: 1.7;
}

.button-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  cursor: pointer;
  transition: 180ms ease;
}

.button-primary {
  background: linear-gradient(135deg, var(--brand-gold), #a7844d);
  color: #fff;
  box-shadow: 0 16px 32px rgba(187, 154, 102, 0.24);
}

.button-primary:hover,
.button-primary:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 20px 36px rgba(187, 154, 102, 0.28);
}

.button-secondary {
  background: #fff;
  color: var(--brand-blue);
  border-color: rgba(14, 75, 142, 0.16);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(14, 75, 142, 0.05);
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 22px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.hero-points li {
  position: relative;
  padding-left: 18px;
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-gold);
}

.mini-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mini-brand .brand-logo {
  width: 64px;
  height: 64px;
}

.meta-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 18px;
  margin: 0;
}

.meta-list div {
  padding: 16px 18px;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(248, 248, 240, 0.92), rgba(255, 255, 255, 0.96));
  border: 1px solid var(--brand-line);
}

.meta-list dt {
  margin: 0 0 6px;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-gold);
}

.meta-list dd {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--brand-ink);
}

.section {
  padding: 36px 0 52px;
}

.section-muted {
  background: rgba(255, 255, 255, 0.7);
}

.stats-grid,
.feature-grid,
.dashboard-grid {
  display: grid;
  gap: 20px;
}

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

.stat-card,
.feature-card,
.dashboard-card,
.sidebar-card,
.section-panel,
.pdf-panel,
.content-actions {
  background: var(--brand-surface);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(187, 154, 102, 0.18);
  box-shadow: var(--brand-shadow);
}

.stat-card,
.feature-card {
  padding: 24px;
}

.stat-card strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  color: var(--brand-blue);
}

.stat-card span {
  color: var(--brand-copy);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.82rem;
}

.section-header {
  margin-bottom: 26px;
}

.section-title {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.9rem, 3vw, 2.7rem);
}

.section-subtitle {
  margin: 10px 0 0;
  color: var(--brand-copy);
  font-size: 1.05rem;
  line-height: 1.7;
}

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

.dashboard-card {
  overflow: hidden;
}

.dashboard-card-media {
  aspect-ratio: 1.06 / 1;
  background: linear-gradient(180deg, rgba(248, 248, 240, 0.96), rgba(255, 255, 255, 0.98));
  border-bottom: 1px solid rgba(187, 154, 102, 0.16);
}

.dashboard-card-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 20px;
}

.dashboard-card-body {
  padding: 24px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(14, 75, 142, 0.08);
  color: var(--brand-blue);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.dashboard-card h3,
.feature-card h3,
.sidebar-card h2,
.pdf-panel h2,
.section-panel h2,
.section-panel h3 {
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
}

.dashboard-card p,
.feature-card p,
.sidebar-card p,
.pdf-panel p {
  margin: 0;
  color: var(--brand-copy);
  line-height: 1.7;
}

.page-layout {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.sidebar-card {
  position: sticky;
  top: 120px;
  padding: 24px;
}

.sidebar-card + .sidebar-card {
  position: static;
}

.section-nav {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.section-nav a {
  display: block;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  background: rgba(248, 248, 240, 0.92);
  border: 1px solid rgba(187, 154, 102, 0.16);
  color: var(--brand-ink);
  transition: 180ms ease;
}

.section-nav a:hover,
.section-nav a:focus-visible {
  background: rgba(14, 75, 142, 0.06);
  color: var(--brand-blue);
}

.document-thumb {
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid rgba(187, 154, 102, 0.16);
  background: linear-gradient(180deg, rgba(248, 248, 240, 0.94), #fff);
  margin: 18px 0;
}

.document-thumb img {
  width: 100%;
  height: auto;
}

.content-area {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.content-actions {
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(187, 154, 102, 0.12);
  color: #946e3a;
  font-weight: 700;
}

.status-pill.is-saved {
  background: rgba(43, 128, 94, 0.12);
  color: #2f6a52;
}

.form-sections {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.section-panel {
  padding: 30px;
}

.section-panel h2 {
  font-size: 1.65rem;
}

.section-panel-intro {
  margin: 0 0 22px;
  color: var(--brand-copy);
}

.subcards-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.subcard {
  padding: 22px;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(248, 248, 240, 0.94), rgba(255, 255, 255, 0.98));
  border: 1px solid rgba(187, 154, 102, 0.14);
}

.subcard p {
  margin-top: 0;
  color: var(--brand-copy);
}

.fields-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 18px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field.is-full {
  grid-column: 1 / -1;
}

.form-field label,
.choice-group legend {
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-ink);
}

.form-input,
.form-textarea {
  width: 100%;
  min-height: 54px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(59, 63, 66, 0.16);
  background: #fff;
  color: var(--brand-ink);
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: rgba(14, 75, 142, 0.5);
  box-shadow: 0 0 0 4px rgba(14, 75, 142, 0.1);
}

.field-hint {
  color: var(--brand-copy);
  font-size: 0.92rem;
}

.choice-group {
  margin: 0;
  padding: 0;
  border: 0;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 8px;
}

.choice-chip {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-height: 54px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  background: rgba(248, 248, 240, 0.92);
  border: 1px solid rgba(187, 154, 102, 0.16);
}

.choice-chip input {
  margin-top: 3px;
}

.pdf-panel {
  padding: 26px;
}

.pdf-frame {
  margin-top: 18px;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(59, 63, 66, 0.12);
  background: #fff;
}

.pdf-frame object {
  display: block;
  width: 100%;
  min-height: 820px;
}

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

.feature-card {
  padding: 28px;
}

.site-footer {
  margin-top: 36px;
  padding: 34px 0 42px;
  background: #fff;
  border-top: 1px solid rgba(187, 154, 102, 0.18);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-note {
  color: var(--brand-copy);
}

.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  max-width: 340px;
  padding: 14px 18px;
  border-radius: 16px;
  background: rgba(59, 63, 66, 0.94);
  color: #fff;
  box-shadow: 0 20px 40px rgba(25, 38, 56, 0.24);
}

@media (max-width: 1120px) {
  .hero-grid,
  .page-layout,
  .stats-grid,
  .dashboard-grid,
  .feature-grid,
  .subcards-grid {
    grid-template-columns: 1fr;
  }

  .sidebar-card {
    position: static;
  }
}

@media (max-width: 760px) {
  .header-inner,
  .footer-inner,
  .content-actions,
  .topbar-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .fields-grid,
  .choice-grid,
  .meta-list,
  .hero-points {
    grid-template-columns: 1fr;
  }

  .hero,
  .section {
    padding-top: 28px;
  }

  .hero-copy,
  .hero-panel,
  .section-panel,
  .sidebar-card,
  .pdf-panel {
    padding: 22px;
  }

  .brand-wording strong {
    font-size: 1.7rem;
  }
}

/* Contact & openingstijden */
.contact-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--brand-line);
}

.contact-item {
  font-size: 0.88rem;
  color: var(--brand-copy);
  text-decoration: none;
}

.contact-item:hover { color: var(--brand-blue); }

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: right;
}

.hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--brand-copy);
}

.hours-closed { color: var(--brand-gold-soft); }
