/* De Fromberg — Bone & Steel design system */

:root {
  /* Bone family */
  --bone-00: #FDFBF7;
  --bone-10: #F5F0E8;
  --bone-20: #EAE3D5;
  --bone-30: #D8CEBC;

  /* Steel family */
  --steel-70: #3A4550;
  --steel-60: #4D5C68;
  --steel-50: #637480;
  --steel-40: #7D909E;
  --steel-30: #A5B4BE;
  --steel-20: #C8D4DA;
  --steel-10: #E4EAED;

  /* Project filter accent (terraco / warmth — separate from neutral chips) */
  --fromberg-filter-border: #C67B3A;
  --fromberg-filter-bg: #FFF6ED;
  --fromberg-filter-text: #5C3318;
  --fromberg-filter-on-a: #C76B2E;
  --fromberg-filter-on-b: #9A4718;

  /* Status (vivid) */
  --status-available: #3DAA42;
  --status-available-fill: rgba(61, 170, 66, 0.50);
  --status-option: #F4A118;
  --status-option-fill: rgba(244, 161, 24, 0.50);
  --status-sold: #E03535;
  --status-sold-fill: rgba(224, 53, 53, 0.50);

  --serif: 'Cormorant Garamond', 'EB Garamond', Georgia, serif;
  --sans: ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  --container-pad: 96px;
  --section-pad: 120px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { background: var(--bone-00); color: var(--steel-70); font-family: var(--sans); -webkit-font-smoothing: antialiased; }
html { width: 100%; }
body { font-size: 17px; line-height: 1.65; }
#root { width: 100%; min-height: 100%; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

/* Type primitives */
.serif { font-family: var(--serif); font-weight: 300; letter-spacing: -0.01em; }
.italic-accent { font-style: italic; color: var(--bone-30); font-weight: 300; }
.italic-accent-steel { font-style: italic; color: var(--steel-40); font-weight: 300; }

.label {
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.18em;
  font-weight: 500;
  color: var(--steel-50);
}
.label--light { color: var(--steel-30); }
.label--steel-bg { color: var(--bone-20); }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 300; letter-spacing: -0.015em; line-height: 1.05; color: var(--steel-70); }
h1 { font-size: clamp(48px, 7vw, 96px); }
h2 { font-size: clamp(36px, 5vw, 64px); }
h3 { font-size: clamp(24px, 2.4vw, 32px); line-height: 1.2; }
h4 { font-size: 22px; line-height: 1.25; }

p { color: var(--steel-50); max-width: 60ch; }

/* Layout */
.container { max-width: 1440px; margin: 0 auto; padding-left: var(--container-pad); padding-right: var(--container-pad); }
@media (max-width: 900px) { :root { --container-pad: 24px; --section-pad: 80px; } }

section { padding-top: var(--section-pad); padding-bottom: var(--section-pad); }
.section-tight { padding-top: 80px; padding-bottom: 80px; }

.bg-bone-00 { background: var(--bone-00); color: var(--steel-70); }
.bg-bone-10 { background: var(--bone-10); color: var(--steel-70); }
.bg-steel-60 { background: var(--steel-60); color: var(--bone-10); }
.bg-steel-70 { background: var(--steel-70); color: var(--bone-10); }

.bg-steel-60 h1, .bg-steel-60 h2, .bg-steel-60 h3, .bg-steel-60 h4,
.bg-steel-70 h1, .bg-steel-70 h2, .bg-steel-70 h3, .bg-steel-70 h4 { color: var(--bone-10); }
.bg-steel-60 .italic-accent, .bg-steel-70 .italic-accent { color: var(--bone-30); }
.bg-steel-60 p, .bg-steel-70 p { color: var(--bone-20); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 11px;
  font-weight: 500;
  padding: 16px 28px;
  border-radius: 2px;
  transition: opacity 0.2s, background 0.2s, color 0.2s;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn--primary:hover { background: var(--steel-60); opacity: 1; }
.btn--primary-light:hover { background: var(--bone-20); opacity: 1; }
.btn--secondary:hover { background: var(--steel-70); color: var(--bone-10); opacity: 1; }
.btn--secondary-light:hover { background: rgba(255,255,255,0.12); opacity: 1; }
:focus-visible { outline: 2px solid var(--steel-50); outline-offset: 3px; border-radius: 2px; }
.bg-steel-70 :focus-visible, .bg-steel-60 :focus-visible { outline-color: var(--bone-30); }
.btn--primary { background: var(--steel-70); color: var(--bone-10); }
.btn--primary-light { background: var(--bone-10); color: var(--steel-70); }
.btn--secondary { background: transparent; border-color: var(--steel-70); color: var(--steel-70); }
.btn--secondary-light { background: transparent; border-color: var(--bone-10); color: var(--bone-10); }
.btn--block { display: flex; width: 100%; justify-content: center; }
/* Hero CTA — punch zonder infinite animatie (voorkomt 'vastgelopen' hover/focus op touch) */
.btn--cta {
  background: var(--bone-10);
  color: var(--steel-70);
  border-color: var(--bone-10);
  padding: 22px 52px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  position: relative;
  isolation: isolate;
  transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease,
    transform 0.22s ease;
  box-shadow:
    0 8px 36px rgba(245, 240, 232, 0.32),
    0 2px 12px rgba(245, 240, 232, 0.2),
    inset 0 0 0 1px rgba(255, 255, 255, 0.55);
}
.btn--cta::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: inherit;
  border: 1px solid rgba(245, 240, 232, 0.35);
  opacity: 0;
  transform: scale(0.98);
  transition: opacity 0.22s ease, transform 0.22s ease;
  pointer-events: none;
  z-index: -1;
}
.btn--cta__label { position: relative; z-index: 1; }
.btn--cta__arrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1;
  margin-left: 6px;
  transition: transform 0.22s ease;
}
/* Alleen echte hover (geen 'plak'-hover na tap op touch) */
@media (hover: hover) and (pointer: fine) {
  .btn--cta:hover {
    background: #fff;
    border-color: #fff;
    box-shadow:
      0 14px 48px rgba(245, 240, 232, 0.45),
      0 4px 18px rgba(245, 240, 232, 0.28),
      inset 0 0 0 1px rgba(255, 255, 255, 0.72);
    transform: translateY(-2px);
  }
  .btn--cta:hover::before { opacity: 1; transform: scale(1); }
  .btn--cta:hover .btn--cta__arrow { transform: translateX(4px); }
}
.btn--cta:active {
  transform: translateY(0);
  box-shadow:
    0 4px 20px rgba(245, 240, 232, 0.24),
    0 2px 8px rgba(245, 240, 232, 0.14),
    inset 0 0 0 1px rgba(255, 255, 255, 0.45);
}
.btn--cta:focus-visible {
  outline: 2px solid var(--bone-30);
  outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
  .btn--cta,
  .btn--cta__arrow { transition: none; }
  .btn--cta:hover,
  .btn--cta:active { transform: none; }
  .btn--cta:hover .btn--cta__arrow { transform: none; }
}

.link {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 11px;
  font-weight: 500;
  color: var(--steel-70);
  border-bottom: 1px solid var(--steel-30);
  padding-bottom: 4px;
  transition: border-color 0.2s, color 0.2s;
}
.link:hover { border-color: var(--steel-70); }
.bg-steel-60 .link, .bg-steel-70 .link { color: var(--bone-10); border-color: var(--bone-30); }

/* Cards */
.card {
  background: var(--bone-00);
  border: 1px solid var(--bone-20);
  border-radius: 3px;
  padding: 32px;
}
.bg-bone-00 .card { background: var(--bone-10); border-color: var(--bone-20); }

/* Forms */
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.16em; color: var(--steel-50); font-weight: 500; }
.field input, .field textarea, .field select {
  background: var(--bone-00);
  border: 1px solid var(--bone-20);
  border-radius: 2px;
  padding: 14px 16px;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--steel-70);
  transition: border-color 0.2s;
  width: 100%;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--steel-60); }
.field textarea { resize: vertical; min-height: 120px; }
.field input[type="range"] {
  border: none;
  padding: 0;
  background: transparent;
  height: 28px;
  cursor: pointer;
}
.field input[type="range"]:focus {
  outline: none;
}

/* Badges */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 10px;
  font-weight: 500;
  padding: 4px 10px;
  border: 1px solid;
  border-radius: 2px;
  background: rgba(255,255,255,0.5);
}
.badge--available { color: #1e6b22; border-color: rgba(61,170,66,0.55); background: rgba(61,170,66,0.13); }
.badge--option { color: #a05e00; border-color: rgba(244,161,24,0.60); background: rgba(244,161,24,0.13); }
.badge--sold { color: #a01818; border-color: rgba(224,53,53,0.55); background: rgba(224,53,53,0.12); }
.badge--new { color: var(--bone-10); background: var(--steel-60); border-color: var(--steel-60); }

/* Status dot */
.dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
.dot--available { background: var(--status-available); }
.dot--option { background: var(--status-option); }
.dot--sold { background: var(--status-sold); }

/* Divider */
.divider { height: 1px; background: var(--bone-20); width: 100%; }
.divider--steel { background: var(--steel-50); opacity: 0.4; }

/* Header / nav */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--steel-70);
  color: var(--bone-10);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
  max-width: 1440px; margin: 0 auto;
  padding: 0 var(--container-pad);
}
.brand { font-family: var(--serif); font-weight: 300; letter-spacing: -0.01em; }
.brand em { font-style: italic; color: var(--bone-30); }

.site-header__right { display: flex; align-items: center; gap: 28px; }
.nav-links { display: flex; gap: 36px; }
.nav-links button {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 11px;
  font-weight: 500;
  color: var(--bone-20);
  padding-bottom: 6px;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.nav-links button:hover { color: var(--bone-10); }
.nav-links button.active { color: var(--bone-10); border-color: var(--bone-30); }
@media (max-width: 900px) { .nav-links { display: none; } }

/* Kopersportaal-knop in de header */
.portal-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  font-weight: 600;
  color: var(--steel-70);
  background: var(--bone-10);
  border: 1px solid var(--bone-10);
  border-radius: 999px;
  padding: 9px 16px;
  transition: background 0.2s, color 0.2s, border-color 0.2s, opacity 0.2s;
  white-space: nowrap;
}
.portal-btn:hover { background: #fff; border-color: #fff; opacity: 1; }
.portal-btn--active { background: var(--bone-30); border-color: var(--bone-30); color: var(--steel-70); }
.portal-btn__icon { display: inline-flex; align-items: center; justify-content: center; }
@media (max-width: 900px) {
  .site-header__right > .portal-btn { display: none; }
}
.portal-btn--mobile {
  margin-top: 16px;
  align-self: flex-start;
  font-size: 13px;
  padding: 14px 22px;
}

.menu-toggle { display: none; }
@media (max-width: 900px) {
  .menu-toggle { display: inline-flex; flex-direction: column; gap: 5px; padding: 11px; min-width: 44px; min-height: 44px; justify-content: center; }
  .menu-toggle span { width: 22px; height: 1px; background: var(--bone-10); display: block; transition: transform 0.25s; }
  .menu-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-toggle.open span:nth-child(2) { opacity: 0; }
  .menu-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
}

.mobile-overlay {
  position: fixed; inset: 0;
  background: var(--steel-70);
  z-index: 40;
  display: flex; flex-direction: column;
  padding: 100px 32px 32px;
  gap: 32px;
  transition: opacity 0.3s, transform 0.3s;
}
.mobile-overlay button {
  text-align: left;
  font-family: var(--serif); font-weight: 300; font-size: 36px;
  color: var(--bone-10); padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-overlay button.active em { font-style: italic; color: var(--bone-30); }

/* Footer */
.site-footer { background: var(--steel-70); color: var(--bone-20); padding: 80px 0 32px; }
.site-footer h4 { font-family: var(--sans); font-weight: 500; font-size: 11px; text-transform: uppercase; letter-spacing: 0.18em; color: var(--bone-30); margin-bottom: 20px; }
.site-footer a { color: var(--bone-20); }
.site-footer a:hover { color: var(--bone-10); }
.site-footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 64px; }
@media (max-width: 900px) { .site-footer__grid { grid-template-columns: 1fr; gap: 40px; } }
.site-footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 64px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 12px; color: var(--steel-30);
}
@media (max-width: 700px) { .site-footer__bottom { flex-direction: column; gap: 12px; align-items: flex-start; } }

/* Hero */
.hero {
  min-height: 85vh;
  display: flex; flex-direction: column; justify-content: center;
  position: relative;
  padding-top: 96px;
  padding-bottom: 96px;
}
.hero__wordmark {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(56px, 6.5vw, 110px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  color: var(--bone-10);
  text-wrap: balance;
}
.hero__wordmark em { font-style: italic; color: var(--bone-30); }
.hero__sub {
  color: var(--bone-20);
  font-size: clamp(16px, 1.4vw, 20px);
  max-width: 44ch;
  line-height: 1.6;
  text-wrap: pretty;
}
.hero__ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__scroll { display: flex; align-items: center; gap: 12px; color: var(--bone-30); font-size: 11px; text-transform: uppercase; letter-spacing: 0.18em; }
.hero__scroll-line { width: 40px; height: 1px; background: var(--bone-30); animation: scrollPulse 2.4s ease-in-out infinite; }
@keyframes scrollPulse { 0%,100% { transform: scaleX(0.4); transform-origin: left; opacity: 0.6; } 50% { transform: scaleX(1); opacity: 1; } }

/* Hero split layout — stack on mobile */
@media (max-width: 900px) {
  .hero-split { grid-template-columns: 1fr !important; }
  .hero-split .hero-illu { min-height: 55vw; position: relative; }
}

/* Generic two-col */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 96px; align-items: start; }
@media (max-width: 900px) { .two-col { grid-template-columns: 1fr !important; gap: 40px !important; } }
@media (max-width: 900px) { .two-col .editorial-img { order: -1 !important; } }

.section-head { display: flex; flex-direction: column; gap: 20px; margin-bottom: 64px; max-width: 720px; }
.omgeving-map-title { max-width: 100%; overflow-wrap: anywhere; word-break: break-word; hyphens: auto; }

.omgeving-map-intro {
  max-width: 52ch;
  font-size: 16px;
  line-height: 1.65;
  color: var(--steel-50);
  margin-top: 12px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Stats stack */
.stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--bone-20); border: 1px solid var(--bone-20); }
.stat { background: var(--bone-00); padding: 28px 24px; }
.stat__value { font-family: var(--serif); font-weight: 300; font-size: clamp(48px, 5.5vw, 78px); line-height: 1; color: var(--steel-70); letter-spacing: -0.02em; }
.stat__value em { font-style: italic; color: var(--bone-30); font-size: 0.55em; vertical-align: 0.18em; margin-left: 4px; font-weight: 300; }
.stat__label { margin-top: 10px; }

/* POI cards */
.poi-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 1100px) { .poi-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .poi-grid { grid-template-columns: 1fr; } }
.poi-card { background: var(--bone-00); border: 1px solid var(--bone-20); border-radius: 3px; overflow: hidden; transition: transform 0.3s; }
.poi-card:hover { transform: translateY(-2px); }
.poi-card:hover .poi-card__media { transform: scale(1.04); }
.poi-card__media { transition: transform 0.45s ease; }
.poi-card__media { aspect-ratio: 4/3; background: var(--bone-20); position: relative; overflow: hidden; }
.poi-card__media .ph { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.poi-card__body { padding: 20px 24px 24px; display: flex; flex-direction: column; gap: 6px; }
.poi-card__name { font-family: var(--serif); font-weight: 300; font-size: 22px; color: var(--steel-70); line-height: 1.15; }
.poi-card__distance { font-size: 13px; color: var(--steel-50); }

/* Building viewer */
.building-viewer { background: var(--bone-00); border: 1px solid var(--bone-20); border-radius: 3px; overflow: hidden; }
.bv-tabs { display: flex; gap: 0; border-bottom: 1px solid var(--bone-20); padding: 0 32px; overflow-x: auto; scrollbar-width: none; flex-shrink: 0; }
.bv-tabs::-webkit-scrollbar { display: none; }
.bv-tabs button {
  padding: 20px 20px;
  text-transform: uppercase; letter-spacing: 0.16em; font-size: 11px; font-weight: 500;
  color: var(--steel-40);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  white-space: nowrap; flex-shrink: 0;
}
.bv-tabs button.active { color: var(--steel-70); border-color: var(--steel-70); }
@media (max-width: 600px) {
  .bv-tabs { padding: 0 16px; }
  .bv-tabs button { padding: 16px 14px; font-size: 10px; letter-spacing: 0.12em; }
}
.bv-canvas { position: relative; aspect-ratio: 16/9; background: var(--bone-10); overflow: hidden; }
.bv-canvas img, .bv-canvas .building-illu { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.bv-canvas svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.bv-canvas svg polygon { transition: opacity 0.2s, fill 0.2s; cursor: pointer; }
.bv-canvas svg polygon:hover { fill-opacity: 0.7 !important; }

.bv-tooltip {
  position: absolute; pointer-events: none;
  background: var(--steel-70); color: var(--bone-10);
  padding: 12px 16px; border-radius: 2px;
  font-size: 12px; line-height: 1.4;
  min-width: 160px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  transform: translate(-50%, -110%);
}
.bv-tooltip strong { font-family: var(--serif); font-weight: 400; font-size: 16px; display: block; margin-bottom: 4px; }

.bv-legend { padding: 24px 32px; display: flex; flex-direction: column; gap: 10px; align-items: flex-start; border-top: 1px solid var(--bone-20); background: var(--bone-10); }
.bv-legend__item { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; color: var(--steel-50); text-transform: uppercase; letter-spacing: 0.14em; }

/* Aanbod layout w/ sidebar */
.aanbod-layout { display: grid; grid-template-columns: 1fr 280px; gap: 32px; align-items: start; }
@media (max-width: 1000px) { .aanbod-layout { grid-template-columns: 1fr; } }
.filter-panel { background: var(--bone-00); border: 1px solid var(--bone-20); border-radius: 3px; padding: 28px; display: flex; flex-direction: column; gap: 24px; position: sticky; top: 100px; }
.filter-panel h4 { font-family: var(--sans); font-size: 11px; text-transform: uppercase; letter-spacing: 0.18em; color: var(--steel-50); font-weight: 500; }
.filter-toggle { display: flex; align-items: center; gap: 10px; padding: 8px 12px; border: 1px solid var(--bone-20); border-radius: 2px; cursor: pointer; font-size: 13px; color: var(--steel-50); transition: background 0.2s, color 0.2s, border-color 0.2s; }
.filter-toggle.on { background: var(--steel-70); color: var(--bone-10); border-color: var(--steel-70); }
.filter-toggles { display: flex; flex-direction: column; gap: 8px; }

.unit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 1200px) { .unit-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 700px) { .unit-grid { grid-template-columns: 1fr; } }
.unit-card { background: var(--bone-00); border: 1px solid var(--bone-20); border-radius: 3px; overflow: hidden; transition: transform 0.3s, border-color 0.3s; cursor: pointer; }
.unit-card:hover { transform: translateY(-2px); border-color: var(--steel-30); }
.unit-card__media { aspect-ratio: 4/3; background: var(--bone-10); display: flex; align-items: center; justify-content: center; border-bottom: 1px solid var(--bone-20); position: relative; padding: 24px; }
.unit-card__body { padding: 24px; display: flex; flex-direction: column; gap: 12px; }
.unit-card__topbar { display: flex; justify-content: space-between; align-items: center; }
.unit-card__num { font-family: var(--serif); font-weight: 300; font-size: 28px; line-height: 1; }
.unit-card__num em { font-style: italic; color: var(--steel-40); font-size: 0.7em; margin-left: 2px; }
.unit-card__specs { display: flex; gap: 16px; font-size: 13px; color: var(--steel-50); flex-wrap: wrap; }
.unit-card__specs span { display: inline-flex; align-items: baseline; gap: 4px; }
.unit-card__price { display: flex; justify-content: space-between; align-items: center; padding-top: 12px; border-top: 1px solid var(--bone-20); }
.unit-card__price-value { font-family: var(--serif); font-weight: 300; font-size: 18px; }

/* Modal */
.modal-backdrop {
  position: fixed; inset: 0; background: rgba(58,69,80,0.65);
  z-index: 100; display: flex; align-items: center; justify-content: center;
  padding: 24px; backdrop-filter: blur(4px);
}
.modal {
  background: var(--bone-00); width: 100%; max-width: 1080px;
  max-height: 92vh; overflow-y: auto;
  border-radius: 3px;
  position: relative;
}
.modal__close {
  position: absolute; top: 16px; right: 16px;
  width: 44px; height: 44px;
  border: 1px solid var(--bone-20); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 2; background: var(--bone-00);
}
.modal__close:hover { background: var(--bone-10); }

/* Floor plan thumb */
.floorplan-thumb {
  width: 100%; height: 100%;
  background: var(--bone-10);
  position: relative;
  display: flex; align-items: center; justify-content: center;
}

/* Form chips */
.chip-group { display: flex; flex-wrap: wrap; gap: 8px; }
.poi-filter-chips {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  border: 1px solid var(--bone-20);
  border-radius: 2px;
  font-size: 13px;
  color: var(--steel-50);
  background: var(--bone-00);
  cursor: pointer;
  transition: all 0.2s;
}
.chip__glyph {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 17px;
  height: 17px;
  opacity: 0.88;
}
.chip.on .chip__glyph { opacity: 1; }
.chip.on { background: var(--steel-70); color: var(--bone-10); border-color: var(--steel-70); }

.chip.chip--filter-fromberg {
  color: var(--fromberg-filter-text);
  border-color: var(--fromberg-filter-border);
  background: var(--fromberg-filter-bg);
  font-weight: 600;
}
.chip.chip--filter-fromberg .chip__glyph {
  opacity: 1;
  width: 18px;
  height: 18px;
}
.chip.chip--filter-fromberg:not(.on):hover {
  background: #FFEFE0;
  border-color: #B56528;
}

.chip.chip--filter-fromberg.chip.on {
  background: linear-gradient(148deg, var(--fromberg-filter-on-a), var(--fromberg-filter-on-b));
  border-color: #7A3910;
  color: var(--bone-10);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.2) inset,
    0 4px 16px rgba(120, 50, 12, 0.35);
}
.chip.chip--filter-fromberg.chip.on .chip__glyph {
  opacity: 1;
}
.poi-filter-select { display: none; }
.omgeving-map-project-hint-mobile {
  display: none;
}
.poi-filter-select select { width: 100%; padding: 12px 16px; border: 1px solid var(--bone-20); border-radius: 2px; background: var(--bone-00); color: var(--steel-70); font-size: 14px; font-family: var(--sans); appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23637480' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
@media (max-width: 700px) {
  .poi-filter-chips { display: none !important; }
  .poi-filter-select { display: block; margin-bottom: 24px; }
  .omgeving-map-project-hint-mobile {
    display: block;
    font-size: 14px;
    line-height: 1.55;
    color: var(--steel-50);
    margin: 0 0 14px;
    padding: 12px 14px;
    background: var(--bone-00);
    border: 1px solid var(--bone-20);
    border-radius: 3px;
  }
}

/* Timeline */
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
@media (max-width: 800px) { .timeline { grid-template-columns: 1fr; } }
.timeline-step { padding: 32px 24px 32px 0; border-top: 1px solid var(--bone-30); position: relative; }
.timeline-step::before { content: ''; position: absolute; top: -5px; left: 0; width: 9px; height: 9px; background: var(--steel-70); border-radius: 50%; }
.timeline-step__num { font-family: var(--serif); font-weight: 300; font-size: 14px; color: var(--steel-40); margin-bottom: 8px; }
.timeline-step__title { font-family: var(--serif); font-weight: 300; font-size: 22px; color: var(--steel-70); margin-bottom: 8px; line-height: 1.2; }
.timeline-step__desc { font-size: 13px; color: var(--steel-50); line-height: 1.5; }

/* Vertical alternating roadmap */
.roadmap {
  position: relative;
  max-width: 820px;
  margin: 24px auto 0;
  padding: 8px 0;
}
.roadmap::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  transform: translateX(-50%);
  width: 0;
  border-left: 2px dashed rgba(180,170,152,0.45);
  pointer-events: none;
}
.roadmap-step {
  display: grid;
  grid-template-columns: 1fr 72px 1fr;
  align-items: center;
  gap: 0 8px;
  padding: 28px 0;
}
.roadmap-node-wrap {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.roadmap-node {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--steel-70);
  border: 3px solid var(--bone-10);
  box-shadow: 0 0 0 2px rgba(58,69,80,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--bone-10);
}
.roadmap-content--left { text-align: right; padding-right: 24px; }
.roadmap-content--right { text-align: left; padding-left: 24px; }
.roadmap-spacer { /* intentionally empty */ }
.roadmap-period { font-size: 10px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--steel-40); margin-bottom: 7px; }
.roadmap-title { font-family: var(--serif); font-weight: 300; font-size: 22px; color: var(--steel-70); line-height: 1.15; margin-bottom: 8px; }
.roadmap-desc { font-size: 13px; color: var(--steel-50); line-height: 1.55; }

@media (max-width: 700px) {
  .roadmap { max-width: none; padding-left: 52px; }
  .roadmap::before { left: 20px; transform: none; }
  .roadmap-step { display: block; padding: 0 0 36px; position: relative; }
  .roadmap-step:last-child { padding-bottom: 4px; }
  .roadmap-node-wrap { position: absolute; left: -52px; top: 0; width: 40px; }
  .roadmap-node { width: 40px; height: 40px; font-size: 10px; }
  .roadmap-spacer { display: none; }
  .roadmap-content--left,
  .roadmap-content--right { text-align: left; padding: 2px 0 0; }
  .roadmap-period { margin-bottom: 5px; }
}

/* ── History grid ── */
.history-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 64px;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 3px;
  overflow: hidden;
}
.history-card { padding: 36px 32px; border-right: 1px solid rgba(255,255,255,0.06); border-bottom: 1px solid rgba(255,255,255,0.06); }
.history-card:nth-child(3n) { border-right: none; }
.history-card:nth-child(n+4) { border-bottom: none; }
.history-card__year { font-family: var(--serif); font-size: 34px; font-weight: 300; color: var(--bone-30); line-height: 1; letter-spacing: -0.02em; }
.history-card__title { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; color: var(--bone-10); margin-top: 16px; }
.history-card__desc { font-size: 13px; line-height: 1.65; color: var(--steel-30); margin-top: 10px; }
@media (max-width: 800px) {
  .history-grid { grid-template-columns: repeat(2, 1fr); }
  .history-card:nth-child(3n) { border-right: 1px solid rgba(255,255,255,0.06); }
  .history-card:nth-child(2n) { border-right: none; }
}
@media (max-width: 480px) {
  .history-grid { grid-template-columns: 1fr; }
  .history-card { border-right: none; }
}

/* ── Project planning timeline ── */
.proj-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  position: relative;
  margin-top: 56px;
}
.proj-timeline::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: var(--bone-20);
  z-index: 0;
}
.proj-step { display: flex; flex-direction: column; align-items: center; gap: 14px; padding: 0 24px; position: relative; }
.proj-node {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--bone-00); border: 2px solid var(--bone-20);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; color: var(--steel-40);
  position: relative; z-index: 1; flex-shrink: 0;
}
.proj-step--active .proj-node {
  background: var(--steel-50);
  border-color: var(--steel-50);
  color: #fff;
  animation: steelBreath 2.8s ease-in-out infinite;
}
@keyframes steelBreath {
  0%,100% { box-shadow: 0 0 0 5px rgba(99,116,128,0.16), 0 4px 16px rgba(58,69,80,0.20); }
  50%      { box-shadow: 0 0 0 12px rgba(99,116,128,0.08), 0 6px 24px rgba(58,69,80,0.16); }
}
.proj-body { text-align: center; }
.proj-date { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; color: var(--steel-40); }
.proj-step--active .proj-date { color: var(--steel-60); }
.proj-label { font-family: var(--serif); font-size: 19px; font-weight: 300; color: var(--steel-60); line-height: 1.2; margin-top: 5px; }
.proj-step--active .proj-label { color: var(--steel-70); font-weight: 400; }
.proj-desc { font-size: 12px; color: var(--steel-40); margin-top: 4px; line-height: 1.4; }
.proj-step--active .proj-desc { color: var(--steel-50); }
@media (max-width: 700px) {
  .proj-timeline { grid-template-columns: 1fr 1fr; row-gap: 48px; }
  .proj-timeline::before { display: none; }
}
@media (max-width: 400px) {
  .proj-timeline { grid-template-columns: 1fr; }
}

/* News list */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
@media (max-width: 1000px) { .news-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .news-grid { grid-template-columns: 1fr; } }
.news-card { display: flex; flex-direction: column; gap: 16px; border-top: 1px solid var(--bone-20); }
.news-card__media { aspect-ratio: 16/9; overflow: hidden; border-radius: 2px; margin-bottom: 8px; }
.news-card__date { font-size: 11px; text-transform: uppercase; letter-spacing: 0.16em; color: var(--steel-40); }
.news-card__title { font-family: var(--serif); font-weight: 300; font-size: 26px; line-height: 1.2; color: var(--steel-70); }
.news-card__excerpt { font-size: 14px; color: var(--steel-50); }
.news-list__media { width: 100%; border-radius: 2px; overflow: hidden; aspect-ratio: 16/7; }

.news-list-item {
  display: flex; flex-direction: column; gap: 20px;
  padding: 40px 0;
  border-top: 1px solid var(--bone-20);
}
.news-list-item:last-child { border-bottom: 1px solid var(--bone-20); }

/* Voorinschrijven split layout */
@media (max-width: 900px) {
  .inschrijven-grid { grid-template-columns: 1fr !important; gap: 40px !important; }
  .inschrijven-grid > div:first-child { position: static !important; top: auto !important; }
  .filter-panel { position: static !important; top: auto !important; }
}

/* Omgeving — kaart + POI-lijst (voorkomt horizontale overflow / afgeknipte secties op mobiel) */
.omgeving-map-section {
  overflow-x: hidden;
  max-width: 100%;
}

/* Map placeholder */
.map-placeholder {
  aspect-ratio: 16/9;
  background: var(--bone-10);
  position: relative;
  border-radius: 3px;
  overflow: hidden;
  border: 1px solid var(--bone-20);
  min-width: 0;
}
.map-placeholder--google {
  background: var(--bone-20);
}
.omgeving-gmap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.omgeving-map-loading {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bone-10);
  color: var(--steel-50);
  font-size: 14px;
  font-family: var(--sans);
  z-index: 1;
}

/* Editorial img */
.editorial-img {
  aspect-ratio: 4/3;
  background: var(--bone-20);
  position: relative;
  border-radius: 3px;
  overflow: hidden;
}

/* Responsive grids */
.cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px,5vw,96px); align-items: center; }
@media (max-width: 900px) { .cta-grid { grid-template-columns: 1fr; } }
.map-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  min-width: 0;
}
.map-grid__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 500px;
  overflow-y: auto;
  padding-right: 8;
  min-width: 0;
  -webkit-overflow-scrolling: touch;
}
.map-grid__list > * {
  min-width: 0;
}

button.poi-list-card {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 14px;
  width: 100%;
  text-align: left;
  cursor: pointer;
  font: inherit;
  color: inherit;
}
.poi-list-card__glyph {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--bone-00);
  border: 2px solid var(--bone-20);
  border-radius: 50%;
}
.poi-list-card__glyph svg { flex-shrink: 0; }
.poi-list-card__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  flex: 1;
  min-width: 0;
}
button.poi-list-card:focus-visible {
  outline: 2px solid var(--steel-70);
  outline-offset: 2px;
}
.poi-list-card--active {
  border-color: var(--steel-50);
  box-shadow: 0 0 0 1px rgba(74, 90, 104, 0.35);
}
.poi-list-card--kern {
  border-color: var(--steel-30);
  background: linear-gradient(160deg, var(--bone-00) 0%, rgba(245, 240, 232, 0.92) 100%);
}
.poi-list-empty {
  font-size: 14px;
  color: var(--steel-50);
  padding: 20px;
  margin: 0;
  border: 1px dashed var(--bone-20);
  border-radius: 3px;
  text-align: center;
}

.poi-list-fromberg-card {
  padding: 22px 20px 24px;
  border-radius: 3px;
  border: 2px solid var(--fromberg-filter-border);
  background: linear-gradient(165deg, var(--fromberg-filter-bg) 0%, var(--bone-00) 55%);
  box-shadow:
    0 1px 0 rgba(255, 252, 248, 0.9) inset,
    0 6px 22px rgba(120, 50, 12, 0.12);
}
.poi-list-fromberg-card__house {
  display: block;
  margin-bottom: 10px;
  line-height: 0;
}
.poi-list-fromberg-card__house svg {
  display: block;
  color: var(--fromberg-filter-border);
}
.poi-list-fromberg-card__label {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fromberg-filter-text);
  opacity: 0.82;
}
.poi-list-fromberg-card__title {
  margin: 6px 0 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(22px, 5vw, 26px);
  color: var(--steel-70);
}
.poi-list-fromberg-card__tag {
  margin: 6px 0 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8B6914;
}
.poi-list-fromberg-card__desc {
  margin: 14px 0 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--steel-50);
  max-width: none;
}
.poi-list-fromberg-card__desc strong {
  color: var(--fromberg-filter-text);
  font-weight: 650;
}
.poi-list-card {
  background: var(--bone-00);
  border: 1px solid var(--bone-20);
  padding: 20px;
  border-radius: 3px;
  overflow-wrap: anywhere;
  word-break: break-word;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.poi-list-card__name {
  font-family: var(--serif);
  font-size: clamp(18px, 4.8vw, 22px);
  color: var(--steel-70);
  margin-top: 4px;
  line-height: 1.2;
  display: block;
}
.poi-list-card__meta {
  font-size: 12px;
  color: var(--steel-50);
  margin-top: 4px;
}
.poi-list-card__desc {
  font-size: 13px;
  margin-top: 10px;
  color: var(--steel-50);
  max-width: none;
  display: block;
  line-height: 1.5;
}
@media (max-width: 800px) {
  .map-grid { grid-template-columns: 1fr; gap: 28px; }
  .map-grid__list {
    max-height: none;
    overflow: visible;
    padding-right: 0;
  }
  .map-placeholder {
    aspect-ratio: 1 / 1;
  }
}
@media (max-width: 480px) {
  .map-placeholder {
    aspect-ratio: 4 / 5;
  }
}
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 64px; }
@media (max-width: 800px) { .benefits-grid { grid-template-columns: 1fr; gap: 40px; } }
.hypotheek-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 2.5vw, 36px);
  align-items: start;
  min-width: 0;
}
.hypotheek-grid > * {
  min-width: 0;
}
@media (max-width: 900px) {
  .hypotheek-grid { grid-template-columns: 1fr; }
}

/* Hypotheek — zelfde .container-breedte als overige secties (geen aparte max-width) */
.hypotheek-section {
  overflow-x: hidden;
}
.hypotheek-main {
  min-width: 0;
}
.hypotheek-title {
  margin-top: 20px;
  max-width: 100%;
  overflow-wrap: anywhere;
}
.hypotheek-sliders {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  min-width: 0;
}
.hypotheek-field {
  min-width: 0;
}
.hypotheek-field-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}
.hypotheek-field-value {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 17px;
  text-align: right;
  flex-shrink: 0;
}
@media (max-width: 420px) {
  .hypotheek-field-head {
    flex-direction: column;
    align-items: flex-start;
  }
  .hypotheek-field-value {
    text-align: left;
  }
}
.hypotheek-range-ticks {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--steel-40);
  margin-top: 4px;
  gap: 8px;
}
.hypotheek-range {
  display: block;
  width: 100%;
  max-width: 100%;
  margin-top: 10px;
  box-sizing: border-box;
}
.hypotheek-kpi-value {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(22px, 5vw, 28px);
  color: var(--steel-70);
  line-height: 1.1;
  margin-top: 8px;
  overflow-wrap: anywhere;
}
.hypotheek-kpi-value--inline {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 8px;
}
.hypotheek-kpi-suffix {
  font-size: 14px;
  color: var(--steel-40);
  font-family: var(--sans);
}
.hypotheek-footnote {
  font-size: 11px;
  color: var(--steel-40);
  margin-top: 12px;
  line-height: 1.6;
  max-width: none;
}

.hypotheek-aside {
  background: var(--steel-70);
  padding: clamp(20px, 3vw, 40px);
  border-radius: 3px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
  box-sizing: border-box;
}
.hypotheek-aside__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(22px, 5vw, 28px);
  color: var(--bone-10);
  line-height: 1.2;
  max-width: 100%;
  overflow-wrap: anywhere;
}
.hypotheek-aside__lead {
  color: var(--bone-20);
  font-size: 15px;
  line-height: 1.7;
  max-width: none;
}
.hypotheek-aside__list {
  list-style: none;
  padding: 0;
  margin: 2px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hypotheek-aside__list-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  color: var(--bone-20);
  font-size: 14px;
  line-height: 1.5;
  min-width: 0;
}
.hypotheek-aside__bullet {
  color: var(--steel-30);
  margin-top: 2px;
  flex-shrink: 0;
}
.hypotheek-aside__cta {
  margin-top: 8px;
}
.hypotheek-aside__btn {
  width: 100%;
  justify-content: center;
  white-space: normal;
  text-align: center;
  line-height: 1.35;
  padding: 14px 16px;
  letter-spacing: 0.12em;
}
.hypotheek-aside__partner-note {
  font-size: 11px;
  color: var(--steel-30);
  margin-top: 14px;
  text-align: center;
  max-width: none;
}
.hypotheek-aside__contact {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  padding-top: 24px;
  margin-top: 4px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  flex-wrap: wrap;
  min-width: 0;
}
.hypotheek-aside__avatar {
  width: 56px;
  height: 64px;
  border-radius: 2px;
  flex-shrink: 0;
  overflow: hidden;
}
.hypotheek-aside__avatar svg {
  width: 100%;
  height: 100%;
  display: block;
}
.hypotheek-aside__contact-text {
  flex: 1;
  min-width: 0;
}
.hypotheek-aside__name {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 17px;
  color: var(--bone-10);
  line-height: 1.15;
}
.hypotheek-aside__role {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: var(--steel-30);
  margin-top: 4px;
  overflow-wrap: anywhere;
}
.hypotheek-aside__links {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hypotheek-aside__links a {
  font-size: 12px;
  color: var(--bone-20);
  text-decoration: none;
  opacity: 0.85;
  overflow-wrap: anywhere;
}

/* Hypotheek: twee KPI-blokken onder de sliders — op smal scherm onder elkaar */
.hypotheek-stats-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--bone-20);
  min-width: 0;
}
.hypotheek-stats-grid__cell {
  background: var(--bone-00);
  padding: clamp(18px, 4vw, 24px) clamp(16px, 4vw, 28px);
  min-width: 0;
}
@media (max-width: 520px) {
  .hypotheek-stats-grid { grid-template-columns: 1fr; }
}
/* Modal full-screen on mobile */
@media (max-width: 700px) {
  .modal-backdrop { padding: 0; align-items: flex-end; }
  .modal { max-height: 95vh; border-radius: 12px 12px 0 0; }
}

/* Page transitions */
.page { animation: pageFade 0.5s ease; }
@keyframes pageFade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* Utility */
.flex { display: flex; }
.gap-8 { gap: 8px; } .gap-16 { gap: 16px; } .gap-24 { gap: 24px; } .gap-32 { gap: 32px; }
.mt-16 { margin-top: 16px; } .mt-24 { margin-top: 24px; } .mt-32 { margin-top: 32px; } .mt-48 { margin-top: 48px; } .mt-64 { margin-top: 64px; }
.text-center { text-align: center; }
.col-span-2 { grid-column: span 2; }

/* Form layout */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 700px) { .form-grid { grid-template-columns: 1fr; } }

/* SVG illustration: building placeholder */
.building-illu {
  background: linear-gradient(180deg, #d8cebc 0%, #c9bfae 50%, #b3a896 100%);
}
