/* PRIVATO — Het stille marktplein voor Nederlandse ondernemers */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=Manrope:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  --bg: #ffffff;
  --bg-elev: #fafaf7;
  --surface: #f6f4ef;
  --surface-2: #efece4;
  --gold: #5b3aa8;
  --gold-soft: #7a5cc7;
  --gold-deep: #432683;
  --ivory: #1a1a1c;
  --ivory-dim: #4a4a4d;
  --muted: #8a8a8e;
  --muted-deep: #c4c2bb;
  --border: #e6e3db;
  --border-soft: #efece4;
  --accent-emerald: #2d6a4f;
  --accent-emerald-soft: #d8eadb;
  --danger: #b85c4f;

  --serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --sans: 'Manrope', system-ui, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;

  --r-sm: 2px;
  --r-md: 4px;
  --r-lg: 6px;

  --container: 1320px;
  --gutter: clamp(20px, 4vw, 48px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ivory);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-weight: 400;
  letter-spacing: -0.005em;
  overflow-x: hidden;
}

/* Subtle backdrop tint */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    radial-gradient(ellipse at 15% 0%, rgba(91,58,168,0.06), transparent 55%),
    radial-gradient(ellipse at 85% 100%, rgba(45,106,79,0.05), transparent 60%);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* TYPE SCALE */
.serif { font-family: var(--serif); font-weight: 400; letter-spacing: -0.02em; }
.italic { font-style: italic; }
.mono { font-family: var(--mono); letter-spacing: 0; }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; letter-spacing: -0.02em; line-height: 1.05; }
h1 { font-size: clamp(48px, 7vw, 104px); font-weight: 300; }
h2 { font-size: clamp(38px, 5vw, 68px); }
h3 { font-size: clamp(26px, 3vw, 40px); }
h4 { font-size: clamp(20px, 2vw, 26px); }

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.kicker::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
}

/* LAYOUT */
.container { max-width: var(--container); margin: 0 auto; padding-inline: var(--gutter); position: relative; z-index: 1; }
.section { padding-block: clamp(80px, 10vw, 160px); position: relative; z-index: 1; }
.divider { height: 1px; background: var(--border); border: 0; }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--r-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: #ffffff;
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
  transform: translateY(-1px);
  box-shadow: 0 14px 30px -10px rgba(91,58,168,0.35);
}
.btn-ghost {
  background: transparent;
  color: var(--ivory);
  border-color: var(--border);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn .arrow {
  display: inline-block;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.btn:hover .arrow { transform: translateX(4px); }

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px) saturate(160%);
  background: rgba(255,255,255,0.86);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 22px;
}
.brand {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0.04em;
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.brand-mark {
  color: var(--gold);
  font-style: italic;
}
.brand-tld {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--muted);
  text-transform: uppercase;
  margin-left: 4px;
}
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  font-size: 14px;
  font-weight: 500;
}
.nav-links a {
  position: relative;
  padding-block: 4px;
  color: var(--ivory-dim);
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  display: flex;
  gap: 12px;
  align-items: center;
}
.nav-login {
  font-size: 13px;
  letter-spacing: 0.05em;
  color: var(--ivory-dim);
}
.nav-login:hover { color: var(--gold); }

@media (max-width: 920px) {
  .nav-links { display: none; }
}

/* HERO */
.hero {
  padding-block: clamp(80px, 12vw, 180px) clamp(60px, 8vw, 120px);
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: end;
}
.hero h1 {
  max-width: 14ch;
  margin-bottom: 32px;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 300;
}
.hero-sub {
  max-width: 56ch;
  font-size: clamp(17px, 1.6vw, 20px);
  color: var(--ivory-dim);
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 40px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 80px;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  border-top: 1px solid var(--border);
  padding-top: 40px;
}
.stat-num {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}
.stat-num em { font-style: italic; color: var(--gold); }
.stat-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

/* FEATURED LISTINGS */
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 32px;
  margin-bottom: 64px;
  flex-wrap: wrap;
}
.section-head-text { max-width: 48ch; }
.section-head h2 { margin-top: 16px; }
.section-link {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--gold-deep);
  padding-bottom: 4px;
  transition: all 0.3s;
}
.section-link:hover { border-color: var(--gold); }

.listings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.listing-card {
  background: var(--bg);
  padding: 36px 32px;
  position: relative;
  transition: background 0.4s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-height: 420px;
}
.listing-card:hover {
  background: var(--surface);
}
.listing-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.listing-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}
.listing-title {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--ivory);
  margin-bottom: 4px;
  max-width: 18ch;
}
.listing-region {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.listing-meta {
  margin-top: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 24px;
  border-top: 1px solid var(--border);
  padding-top: 24px;
}
.meta-row {}
.meta-label {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.meta-value {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--ivory);
}
.meta-value.gold { color: var(--gold); }
.listing-arrow {
  position: absolute;
  top: 32px;
  right: 32px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.listing-card:hover .listing-arrow {
  border-color: var(--gold);
  color: var(--gold);
  transform: rotate(-45deg);
}

/* SECTORS */
.sectors {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  border: 1px solid var(--border);
  border-right: 0;
  border-bottom: 0;
}
.sector-cell {
  padding: 36px 28px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background 0.4s;
  cursor: pointer;
  position: relative;
  min-height: 200px;
}
.sector-cell:hover {
  background: var(--surface);
}
.sector-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--gold);
}
.sector-name {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.15;
}
.sector-count {
  margin-top: auto;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.08em;
}
.sector-cell::after {
  content: '→';
  position: absolute;
  bottom: 28px;
  right: 28px;
  font-family: var(--serif);
  color: var(--muted);
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.4s;
}
.sector-cell:hover::after {
  opacity: 1;
  transform: translateX(0);
  color: var(--gold);
}

/* PROCESS — three column editorial */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px;
  margin-top: 24px;
}
.process-step {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.process-num {
  font-family: var(--serif);
  font-size: 96px;
  font-style: italic;
  font-weight: 300;
  line-height: 0.9;
  color: var(--gold);
  letter-spacing: -0.03em;
}
.process-title {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.015em;
}
.process-desc {
  color: var(--ivory-dim);
  font-size: 15px;
  line-height: 1.65;
  font-weight: 300;
  max-width: 38ch;
}
@media (max-width: 920px) { .process-grid { grid-template-columns: 1fr; gap: 48px; } }

/* PRICING */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 24px;
}
.pricing-card {
  background: var(--bg);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  position: relative;
  min-height: 540px;
  transition: background 0.4s;
}
.pricing-card.featured {
  background: var(--surface);
  border: 1px solid var(--gold);
  margin: -1px;
  position: relative;
  z-index: 2;
}
.pricing-card.featured::before {
  content: 'AANBEVOLEN';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background: var(--accent-emerald);
  color: #ffffff;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  padding: 6px 14px;
  border-radius: 2px;
}
.pricing-tier {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.pricing-name {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.pricing-tagline {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 32px;
  max-width: 32ch;
}
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 8px;
}
.pricing-amount {
  font-family: var(--serif);
  font-size: 64px;
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1;
}
.pricing-currency { color: var(--gold); font-size: 32px; font-family: var(--serif); }
.pricing-period {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.12em;
}
.pricing-divider {
  height: 1px;
  background: var(--border);
  margin: 32px 0;
}
.pricing-features {
  list-style: none;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--ivory-dim);
  line-height: 1.5;
}
.pricing-features li::before {
  content: '✦';
  color: var(--gold);
  flex-shrink: 0;
  font-size: 12px;
  margin-top: 3px;
}
.pricing-cta { width: 100%; justify-content: center; }
@media (max-width: 920px) { .pricing-grid { grid-template-columns: 1fr; } }

/* TESTIMONIAL — editorial pull quote */
.testimonial {
  position: relative;
  padding-block: clamp(100px, 12vw, 180px);
}
.testimonial {
  background: var(--surface);
  border-radius: 8px;
  padding-inline: clamp(24px, 5vw, 80px) !important;
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: 40px;
  left: 40px;
  font-family: var(--serif);
  font-size: clamp(160px, 20vw, 320px);
  font-style: italic;
  font-weight: 300;
  line-height: 0.8;
  color: var(--gold);
  opacity: 0.14;
  pointer-events: none;
}
.testimonial-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 80px;
  align-items: end;
}
.testimonial-quote {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 48px);
  font-style: italic;
  font-weight: 300;
  line-height: 1.25;
  letter-spacing: -0.015em;
  max-width: 24ch;
}
.testimonial-quote span { color: var(--gold); }
.testimonial-meta {
  border-left: 1px solid var(--border);
  padding-left: 28px;
}
.testimonial-name {
  font-family: var(--serif);
  font-size: 22px;
  margin-bottom: 4px;
}
.testimonial-role {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}
.testimonial-deal {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.testimonial-deal strong {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--gold);
}
.testimonial-deal span {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--muted);
  text-transform: uppercase;
}
@media (max-width: 920px) {
  .testimonial-inner { grid-template-columns: 1fr; gap: 40px; }
}

/* CTA BAND */
.cta-band {
  background: linear-gradient(135deg, #f4eef7 0%, #e9f4ec 100%);
  border-block: 1px solid var(--border);
  padding-block: clamp(80px, 10vw, 140px);
  text-align: center;
}
.cta-band h2 {
  max-width: 18ch;
  margin: 0 auto 20px;
}
.cta-band h2 em { color: var(--gold); font-style: italic; }
.cta-band p {
  max-width: 56ch;
  margin: 0 auto 36px;
  color: var(--ivory-dim);
  font-weight: 300;
  font-size: 17px;
}
.cta-band-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* FOOTER */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding-block: 80px 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 48px;
  margin-bottom: 64px;
}
.footer-brand p {
  color: var(--muted);
  margin-top: 16px;
  max-width: 36ch;
  font-size: 14px;
  font-weight: 300;
}
.footer-col h5 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 500;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 14px;
  color: var(--ivory-dim);
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  flex-wrap: wrap;
  gap: 16px;
}
@media (max-width: 920px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* LISTINGS PAGE */
.page-header {
  padding-block: clamp(80px, 10vw, 140px) 60px;
  border-bottom: 1px solid var(--border);
}
.page-header h1 {
  font-size: clamp(44px, 6vw, 84px);
  max-width: 18ch;
  margin-bottom: 24px;
}
.page-header p {
  max-width: 56ch;
  color: var(--ivory-dim);
  font-weight: 300;
  font-size: 17px;
}

.listings-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  padding-block: 48px;
}
.filter-panel {
  position: sticky;
  top: 96px;
  align-self: start;
  border-right: 1px solid var(--border);
  padding-right: 32px;
}
.filter-group { margin-bottom: 32px; }
.filter-group h5 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.filter-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.filter-list li {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--ivory-dim);
  cursor: pointer;
  padding-block: 4px;
  transition: color 0.3s;
}
.filter-list li:hover { color: var(--gold); }
.filter-list .count { color: var(--muted); font-family: var(--mono); font-size: 11px; }
.range-inputs { display: flex; gap: 8px; }
.range-inputs input {
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--ivory);
  padding: 10px 12px;
  font-family: var(--mono);
  font-size: 12px;
  border-radius: var(--r-sm);
}
.range-inputs input:focus { outline: 1px solid var(--gold); border-color: var(--gold); }

.listings-content {}
.listings-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 16px;
}
.results-count {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--muted);
}
.results-count strong { color: var(--ivory); font-weight: 500; }
.sort-select {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--ivory);
  padding: 10px 16px;
  font-family: var(--sans);
  font-size: 13px;
  border-radius: var(--r-sm);
  cursor: pointer;
}

.listing-row {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: padding 0.4s;
}
.listing-row:hover { padding-inline: 16px; background: linear-gradient(90deg, transparent, var(--surface), transparent); }
.row-id {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.1em;
}
.row-info h4 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 6px;
}
.row-meta {
  display: flex;
  gap: 20px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.06em;
}
.row-financials {
  display: flex;
  gap: 36px;
  align-items: baseline;
}
.row-fin-block { text-align: right; }
.row-fin-label {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 2px;
}
.row-fin-value {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--ivory);
}
.row-fin-value.gold { color: var(--gold); }
@media (max-width: 920px) {
  .listings-layout { grid-template-columns: 1fr; }
  .filter-panel { display: none; }
  .listing-row { grid-template-columns: 1fr; gap: 12px; }
  .row-financials { flex-wrap: wrap; gap: 16px; }
}

/* DETAIL PAGE */
.detail-hero {
  padding-block: 60px;
  border-bottom: 1px solid var(--border);
}
.breadcrumb {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
  display: flex;
  gap: 12px;
  align-items: center;
}
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--gold); }
.detail-hero h1 {
  font-size: clamp(40px, 5vw, 72px);
  max-width: 18ch;
  margin-bottom: 16px;
}
.detail-tags {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  color: var(--ivory-dim);
}
.tag.gold { color: var(--gold); border-color: var(--gold-deep); }

.detail-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 64px;
  padding-block: 64px;
}
.detail-block { margin-bottom: 56px; }
.detail-block h3 { margin-bottom: 20px; font-size: 32px; }
.detail-block p { color: var(--ivory-dim); font-weight: 300; line-height: 1.7; font-size: 16px; }
.detail-block p + p { margin-top: 16px; }
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 16px;
}
.metric-cell {
  background: var(--bg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.metric-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--muted);
  text-transform: uppercase;
}
.metric-value {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.metric-value.gold { color: var(--gold); }
.metric-value.small { font-size: 22px; }

.detail-aside {
  position: sticky;
  top: 96px;
  align-self: start;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 36px;
  border-radius: var(--r-md);
}
.aside-price {
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.aside-price-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 32px;
  display: block;
}
.aside-divider { height: 1px; background: var(--border); margin: 28px 0; }
.aside-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; font-size: 14px; }
.aside-list li {
  display: flex;
  justify-content: space-between;
  color: var(--ivory-dim);
}
.aside-list li span:first-child { color: var(--muted); }
.aside-cta { width: 100%; justify-content: center; margin-bottom: 12px; }
.aside-note { font-size: 12px; color: var(--muted); text-align: center; line-height: 1.5; margin-top: 16px; }

@media (max-width: 920px) { .detail-grid { grid-template-columns: 1fr; } }

/* PLAATSEN — sell flow */
.steps-bar {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  padding-bottom: 32px;
  margin-bottom: 48px;
  position: relative;
}
.steps-bar::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 25%;
  height: 1px;
  background: var(--gold);
}
.step {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  position: relative;
}
.step-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--muted);
}
.step.active .step-num { color: var(--gold); }
.step-label { font-family: var(--serif); font-size: 18px; }
.step.active .step-label { color: var(--gold); }

.form-group { margin-bottom: 28px; }
.form-group label {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--ivory);
  padding: 16px 18px;
  font-family: var(--sans);
  font-size: 15px;
  border-radius: var(--r-sm);
  transition: border-color 0.3s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

/* MICRO ANIMATIONS */
@keyframes rise {
  0% { opacity: 0; transform: translateY(28px); }
  100% { opacity: 1; transform: translateY(0); }
}
.rise { animation: rise 1s cubic-bezier(0.2, 0.8, 0.2, 1) both; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

/* SCROLLBAR */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--surface-2); border-radius: 0; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-deep); }

/* SELECTION */
::selection { background: var(--gold); color: var(--bg); }
