/* ==========================================================================
   huren in a.be — gedeelde stijl
   Vervangt de Tailwind CDN (die compileerde in de browser: traag + FOUC).
   Huisstijl: antwerp-red #E30613, antwerp-dark #1A1A1A
   ========================================================================== */

:root {
  --red: #e30613;
  --red-dark: #b40410;
  --dark: #1a1a1a;
  --grey-900: #111827;
  --grey-700: #374151;
  --grey-600: #4b5563;
  --grey-500: #6b7280;
  --grey-400: #9ca3af;
  --grey-200: #e5e7eb;
  --grey-100: #f3f4f6;
  --grey-50: #f9fafb;
  --light: #f5f5f5;
  --radius: 1rem;
  --radius-lg: 1.5rem;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, .05);
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, .1), 0 2px 4px -2px rgba(0, 0, 0, .06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, .1), 0 4px 6px -4px rgba(0, 0, 0, .05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, .1), 0 8px 10px -6px rgba(0, 0, 0, .04);
  --nav-h: 5rem;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 1rem);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--grey-700);
  background: #fff;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4, h5 {
  color: var(--dark);
  line-height: 1.2;
  margin: 0 0 .5em;
  font-weight: 700;
  letter-spacing: -.02em;
}

.serif { font-family: 'Playfair Display', Georgia, serif; font-style: italic; }

/* ---------- layout ---------- */

.wrap { max-width: 80rem; margin: 0 auto; padding: 0 1rem; }
@media (min-width: 640px) { .wrap { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .wrap { padding: 0 2rem; } }

.wrap-narrow { max-width: 56rem; margin: 0 auto; padding: 0 1rem; }

section { padding: 4rem 0; }
@media (min-width: 640px) { section { padding: 5rem 0; } }

.bg-grey { background: var(--grey-50); }
.bordered-top { border-top: 1px solid var(--grey-200); }
.bordered-bottom { border-bottom: 1px solid var(--grey-200); }

.eyebrow {
  color: var(--red);
  font-weight: 700;
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  display: block;
}
@media (min-width: 640px) { .eyebrow { font-size: .875rem; } }

.section-head { text-align: center; margin-bottom: 2.5rem; }
.section-head h2 { font-size: 1.5rem; margin: .5rem 0 1rem; }
@media (min-width: 640px) { .section-head h2 { font-size: 1.875rem; } }
.section-head p { color: var(--grey-600); max-width: 42rem; margin: 0 auto; font-size: .95rem; }

/* ---------- knoppen ---------- */

.btn {
  display: inline-block;
  background: var(--red);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  padding: .75rem 1.75rem;
  border-radius: 999px;
  box-shadow: var(--shadow-lg);
  transition: background .25s, transform .25s, box-shadow .25s;
  border: none;
  cursor: pointer;
  text-align: center;
}
.btn:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: var(--shadow-xl); }

.btn-lg { padding: 1rem 2rem; font-size: 1.125rem; }
.btn-sm { padding: .625rem 1.5rem; font-size: .9375rem; font-weight: 600; }

.btn-ghost {
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--grey-200);
  box-shadow: none;
}
.btn-ghost:hover { background: var(--grey-100); border-color: var(--grey-400); }

.btn-block { display: block; width: 100%; }
@media (min-width: 640px) { .btn-auto-sm { display: inline-block; width: auto; } }

/* ---------- navigatie ---------- */

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 40;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--grey-100);
  transition: box-shadow .3s;
}
.nav.scrolled { box-shadow: var(--shadow); }

.nav-inner { display: flex; align-items: center; justify-content: space-between; height: var(--nav-h); }

.brand { display: flex; align-items: center; gap: .5rem; text-decoration: none; }
.brand-mark {
  width: 2.75rem; height: 2.75rem;
  background: var(--red); color: #fff;
  display: flex; align-items: center; justify-content: center;
  border-radius: 3px;
  transform: rotate(-3deg);
  transition: transform .3s;
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic; font-weight: 700; font-size: 1.75rem;
}
.brand:hover .brand-mark { transform: rotate(0); }
.brand-name { font-weight: 700; font-size: 1.125rem; color: var(--dark); letter-spacing: -.02em; }

.nav-links { display: none; gap: 2rem; }
@media (min-width: 1024px) { .nav-links { display: flex; } }
.nav-links a {
  text-decoration: none; color: var(--grey-600); font-weight: 500;
  transition: color .2s;
}
.nav-links a:hover { color: var(--red); }

.nav-actions { display: flex; align-items: center; gap: 1rem; }
.nav-cta { display: none; }
@media (min-width: 640px) { .nav-cta { display: inline-block; } }

.burger {
  display: inline-flex; align-items: center; justify-content: center;
  width: 2.5rem; height: 2.5rem;
  background: none; border: 0; color: var(--grey-600); cursor: pointer;
}
@media (min-width: 1024px) { .burger { display: none; } }
.burger svg { width: 1.5rem; height: 1.5rem; }

.mobile-menu {
  display: none;
  position: absolute; left: 0; width: 100%;
  background: #fff;
  border-bottom: 1px solid var(--grey-100);
  box-shadow: var(--shadow-lg);
  padding: .5rem 1rem 1.5rem;
}
.mobile-menu.open { display: block; }
@media (min-width: 1024px) { .mobile-menu, .mobile-menu.open { display: none; } }
.mobile-menu a {
  display: block; padding: .75rem; border-radius: .5rem;
  text-decoration: none; color: var(--grey-700); font-weight: 500;
}
.mobile-menu a:hover { color: var(--red); background: var(--grey-50); }
.mobile-menu .btn { margin-top: 1rem; }

/* ---------- hero ---------- */

.hero {
  position: relative;
  padding: 8rem 0 5rem;
  overflow: hidden;
  background: var(--grey-50);
}
@media (min-width: 1024px) { .hero { padding: 12rem 0 8rem; } }

.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(255, 255, 255, .62);
  backdrop-filter: blur(3px);
}

.hero-card {
  position: relative; z-index: 1;
  max-width: 56rem; margin: 0 auto;
  text-align: center;
  background: rgba(255, 255, 255, .85);
  backdrop-filter: blur(16px);
  border: 1px solid #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 1.75rem 1.25rem;
}
@media (min-width: 640px) { .hero-card { padding: 3rem; } }

.hero h1 {
  font-size: 1.875rem; font-weight: 800; margin: 0 0 1.25rem;
}
@media (min-width: 640px) { .hero h1 { font-size: 2.5rem; } }
@media (min-width: 1024px) { .hero h1 { font-size: 3.25rem; } }
.hero h1 .sub {
  display: block; margin-top: .5rem;
  color: var(--red);
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 1.5rem;
}
@media (min-width: 640px) { .hero h1 .sub { font-size: 2.125rem; } }

.hero-lead {
  font-size: 1.0625rem; color: var(--grey-700);
  max-width: 42rem; margin: 0 auto 2rem;
}
@media (min-width: 640px) { .hero-lead { font-size: 1.1875rem; } }

.price-row {
  display: flex; flex-direction: column; align-items: center;
  gap: 1rem; margin-bottom: 2rem;
}
@media (min-width: 640px) { .price-row { flex-direction: row; justify-content: center; gap: 1.5rem; } }

.price-card {
  background: #fff;
  border: 1px solid var(--grey-100);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 1rem 1.5rem;
  display: flex; flex-direction: column; align-items: center;
  width: 100%;
}
@media (min-width: 640px) { .price-card { width: auto; min-width: 11rem; padding: 1.25rem 2rem; } }
.price-card .label {
  font-size: .6875rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--grey-500); margin-bottom: .25rem;
}
@media (min-width: 640px) { .price-card .label { font-size: .8125rem; } }
.price-card .value { font-size: 1.875rem; font-weight: 800; color: var(--grey-900); }
@media (min-width: 640px) { .price-card .value { font-size: 2.25rem; } }
.price-card .value span { font-size: 1rem; font-weight: 500; color: var(--grey-500); }

.price-plus { display: none; font-size: 2rem; color: var(--grey-400); font-weight: 300; }
@media (min-width: 640px) { .price-plus { display: block; } }

/* ---------- statusmechanisme -----------------------------------------
   Eén schakelaar op <body>: status-tehuur | status-optie | status-verhuurd
   LET OP: pas óók de schema.org availability in de <head> aan.
   -------------------------------------------------------------------- */

.badge {
  display: none;
  align-items: center; gap: .5rem;
  padding: .5rem 1rem; border-radius: 999px;
  font-weight: 700; font-size: .75rem; letter-spacing: .04em;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
}
@media (min-width: 640px) { .badge { font-size: .875rem; } }
.badge .dot { width: .5rem; height: .5rem; border-radius: 999px; }

body.status-tehuur   .badge-tehuur   { display: inline-flex; background: #dcfce7; color: #166534; }
body.status-optie    .badge-optie    { display: inline-flex; background: #fef3c7; color: #92400e; }
body.status-verhuurd .badge-verhuurd { display: inline-flex; background: var(--grey-200); color: var(--grey-700); }

.badge-tehuur .dot   { background: #22c55e; animation: pulse 2s infinite; }
.badge-optie .dot    { background: #f59e0b; }
.badge-verhuurd .dot { background: var(--grey-500); }

@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .35; } }

/* CTA's tonen of verbergen op basis van de status */
.cta-verhuurd { display: none; }
body.status-verhuurd .cta-actief { display: none !important; }
body.status-verhuurd .cta-verhuurd { display: inline-block; }

.rented-note {
  display: none;
  background: var(--grey-100);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  color: var(--grey-700);
  font-size: .9375rem;
}
body.status-verhuurd .rented-note { display: block; }

/* ---------- beschrijving / kenmerken ---------- */

.two-col { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: start; }
@media (min-width: 1024px) { .two-col { grid-template-columns: 1fr 1fr; gap: 4rem; } }

.prose p { margin: 0 0 1.25rem; color: var(--grey-600); }
.prose strong { color: var(--grey-900); }

.info-box {
  margin-top: 2rem;
  background: #eff6ff;
  border: 1px solid #dbeafe;
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}
@media (min-width: 640px) { .info-box { padding: 2rem; } }
.info-box h3 { color: #1e3a8a; font-size: 1.125rem; margin-bottom: 1.25rem; display: flex; align-items: center; gap: .5rem; }
.info-box ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 1rem; }
.info-box li { display: flex; gap: .75rem; align-items: flex-start; }
.info-box .ico { font-size: 1.125rem; line-height: 1.4; }
.info-box strong { display: block; color: var(--grey-900); font-size: .9375rem; }
.info-box span.txt { display: block; font-size: .875rem; color: var(--grey-600); margin-top: .125rem; }

.features {
  background: var(--grey-50);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}
@media (min-width: 640px) { .features { padding: 2rem; } }
.features h3 {
  font-size: 1.25rem; margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--grey-200); padding-bottom: 1rem;
}
@media (min-width: 640px) { .features h3 { font-size: 1.5rem; } }
.features ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.5rem; }
.features li { display: flex; align-items: flex-start; }
.features .ico { font-size: 1.5rem; line-height: 1; margin-right: 1rem; }
.features h4 { margin: 0; font-size: 1rem; }
.features p { margin: .25rem 0 0; font-size: .9375rem; color: var(--grey-600); }

.spec-list { list-style: none; margin: 1.5rem 0 0; padding: 0; display: grid; gap: .5rem; }
.spec-list li {
  display: flex; gap: .625rem; align-items: flex-start;
  font-size: .9375rem; color: var(--grey-700);
}
.spec-list li::before { content: '✓'; color: var(--red); font-weight: 700; flex: none; }

/* ---------- plattegrond ---------- */

.floorplan {
  max-width: 34rem; margin: 0 auto;
  background: #fff;
  border: 1px solid var(--grey-100);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 1rem;
  cursor: zoom-in;
  transition: box-shadow .3s;
}
@media (min-width: 640px) { .floorplan { padding: 2rem; } }
.floorplan:hover { box-shadow: var(--shadow-xl); }
.floorplan img {
  width: 100%; max-height: 680px; object-fit: contain;
  border-radius: .75rem; background: #fff;
  transition: transform .5s;
}
.floorplan:hover img { transform: scale(1.02); }

/* ---------- galerij ---------- */

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}
/* Bij weinig foto's: grotere beelden, zodat het bewust oogt en niet onaf. */
.gallery.gallery-few { grid-template-columns: repeat(auto-fit, minmax(360px, 1fr)); }

.gallery-item {
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: .75rem;
  background: var(--grey-200);
  cursor: zoom-in;
  transition: transform .3s, box-shadow .3s;
}
.gallery-item:hover { transform: scale(1.02); box-shadow: var(--shadow-lg); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }

.gallery-note { margin-top: 2rem; text-align: center; font-size: .8125rem; color: var(--grey-500); font-style: italic; }

/* ---------- locatie ---------- */

.location-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 1024px) { .location-grid { grid-template-columns: repeat(3, 1fr); gap: 2.5rem; } }

.poi { display: grid; gap: .75rem; }
.poi-item {
  background: #fff; border: 1px solid var(--grey-200);
  border-radius: .75rem; padding: 1rem;
  display: flex; align-items: center; gap: 1rem;
  transition: box-shadow .3s;
}
.poi-item:hover { box-shadow: var(--shadow); }
.poi-item .ico { font-size: 1.5rem; }
.poi-item h5 { margin: 0; font-size: .9375rem; }
.poi-item p { margin: 0; font-size: .8125rem; color: var(--grey-600); }

.location-photo {
  position: relative;
  min-height: 350px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--grey-200);
  cursor: zoom-in;
}
.location-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s; }
.location-photo:hover img { transform: scale(1.05); }
.location-photo figcaption {
  position: absolute; left: 1rem; right: 1rem; bottom: 1rem;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(6px);
  border: 1px solid var(--grey-100);
  border-radius: .75rem;
  padding: .75rem 1rem;
  font-size: .875rem;
  box-shadow: var(--shadow);
}
.location-photo figcaption strong { display: flex; align-items: center; gap: .5rem; color: var(--dark); }
.location-photo figcaption span { display: block; font-size: .75rem; color: var(--grey-600); margin-top: .25rem; }

.map {
  position: relative;
  min-height: 350px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--grey-200);
  background: var(--grey-200);
}
.map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.map .pin {
  position: absolute; top: 1rem; right: 1rem; z-index: 1;
  background: #fff; border-radius: .5rem; padding: .5rem .75rem;
  font-weight: 700; font-size: .8125rem; color: var(--dark);
  box-shadow: var(--shadow);
}

/* ---------- footer ---------- */

.site-footer {
  background: var(--dark);
  color: #fff;
  padding: 4rem 0 2.5rem;
  text-align: center;
}
.site-footer h2 { color: #fff; font-size: 1.75rem; margin-bottom: 1rem; }
@media (min-width: 640px) { .site-footer h2 { font-size: 2.25rem; } }
.site-footer .lead { color: var(--grey-400); font-size: 1.0625rem; margin: 0 auto 2rem; max-width: 42rem; }
.site-footer .btn:hover { background: #fff; color: var(--red); }
.site-footer .disclaimer { color: var(--grey-500); font-size: .875rem; font-style: italic; margin: 1.5rem 0 3rem; }

.footer-bar {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding-top: 2rem;
  display: flex; flex-direction: column; gap: 1rem;
  align-items: center; justify-content: space-between;
  font-size: .8125rem; color: var(--grey-500);
}
@media (min-width: 768px) { .footer-bar { flex-direction: row; text-align: right; } }
.footer-bar p { margin: 0; }
.footer-bar .footer-brand { display: flex; align-items: center; gap: .5rem; }
.footer-bar .footer-brand span:first-child {
  font-family: 'Playfair Display', Georgia, serif; font-style: italic;
  font-weight: 700; font-size: 1.25rem; color: #fff;
}
.footer-ref { color: #6b7280; font-size: .75rem; letter-spacing: .05em; }

/* ---------- lightbox ---------- */

body.lightbox-open { overflow: hidden; }

.lightbox {
  position: fixed; inset: 0; z-index: 50;
  background: rgba(0, 0, 0, .95);
  display: none;
  flex-direction: column; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .3s;
}
.lightbox.visible { display: flex; }
.lightbox.shown { opacity: 1; }

.lightbox-stage {
  position: relative;
  width: 100%; max-width: 72rem; height: 78vh;
  display: flex; align-items: center; justify-content: center;
  padding: 0 3.5rem;
}
.lightbox-stage img { max-width: 100%; max-height: 100%; object-fit: contain; border-radius: .375rem; box-shadow: var(--shadow-xl); }

.lb-btn {
  position: absolute; z-index: 2;
  width: 3rem; height: 3rem;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0, 0, 0, .35); color: #fff;
  border: 0; border-radius: 999px; cursor: pointer;
  font-size: 2.25rem; line-height: 1;
  transition: color .2s;
}
.lb-btn:hover { color: var(--red); }
.lb-prev { left: .5rem; }
.lb-next { right: .5rem; }
.lb-close { top: 1rem; right: 1rem; font-size: 1.75rem; }
.lightbox[data-single="true"] .lb-prev,
.lightbox[data-single="true"] .lb-next,
.lightbox[data-single="true"] .lb-counter { display: none; }

.lb-counter {
  position: absolute; bottom: 1.5rem; left: 0; right: 0;
  text-align: center; color: rgba(255, 255, 255, .7);
  font-size: .875rem; letter-spacing: .15em;
}

/* ---------- toegankelijkheid ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

:focus-visible { outline: 3px solid var(--red); outline-offset: 2px; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
}

/* ==========================================================================
   Landingspagina (/) — merkverhaal, "Nu beschikbaar" en "Zo werkt het"
   Alleen gebruikt op de startpagina; de pandpagina's raken dit niet aan.
   ========================================================================== */

/* Hero zonder foto: de landingspagina hangt niet vast aan één pand. */
.hero-plain {
  background: linear-gradient(160deg, #fff 0%, var(--grey-50) 55%, #fdeaec 100%);
}
.hero-plain .hero-card {
  background: rgba(255, 255, 255, .8);
  text-align: left;
}
.hero-plain .hero-lead { margin-left: 0; }

.hero-signature {
  display: block;
  margin-top: 1.5rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  color: var(--grey-500);
  font-size: .9375rem;
}

/* Losse badge, zonder statusmechanisme (dat hoort bij de pandpagina's). */
.badge-plain {
  display: inline-flex;
  align-items: center; gap: .5rem;
  padding: .5rem 1rem; border-radius: 999px;
  font-weight: 700; font-size: .75rem; letter-spacing: .04em;
  background: #dcfce7; color: #166534;
  box-shadow: var(--shadow-sm);
}
.badge-plain .dot { width: .5rem; height: .5rem; border-radius: 999px; background: #22c55e; animation: pulse 2s infinite; }

/* Pand dat pas later vrijkomt: zelfde vorm, rustiger kleur. */
.badge-plain.badge-soon { background: #fef3c7; color: #92400e; }
.badge-plain.badge-soon .dot { background: #f59e0b; }

/* ---------- het beschikbare pand ---------- */

.offer {
  display: grid;
  grid-template-columns: 1fr;
  background: #fff;
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
@media (min-width: 900px) { .offer { grid-template-columns: 1.15fr 1fr; } }

/* Staan er meerdere panden te huur, dan komen de kaarten onder elkaar. */
.offer + .offer { margin-top: 1.75rem; }

.offer-media { display: block; margin: 0; overflow: hidden; background: var(--grey-200); }
.offer-media img { width: 100%; height: 100%; min-height: 260px; object-fit: cover; transition: transform .7s; }
.offer:hover .offer-media img { transform: scale(1.03); }

.offer-body { padding: 1.75rem 1.5rem 2rem; display: flex; flex-direction: column; }
@media (min-width: 640px) { .offer-body { padding: 2.5rem; } }

.offer-body h3 { font-size: 1.5rem; margin: 1rem 0 .25rem; }
@media (min-width: 640px) { .offer-body h3 { font-size: 1.875rem; } }
.offer-place {
  display: block; color: var(--red); font-weight: 600; font-size: .9375rem;
  margin-bottom: 1rem;
}
.offer-sell { color: var(--grey-600); margin: 0 0 1.5rem; font-size: 1.0625rem; }

.offer-price {
  display: flex; align-items: baseline; flex-wrap: wrap; gap: .5rem;
  margin-bottom: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--grey-100);
}
.offer-price strong { font-size: 2rem; font-weight: 800; color: var(--grey-900); }
.offer-price span { font-size: .9375rem; color: var(--grey-500); }

.offer-body .btn { margin-top: auto; }

/* ---------- zo werkt het ---------- */

.steps { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 768px) { .steps { grid-template-columns: repeat(3, 1fr); } }

.step {
  background: #fff;
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .3s, transform .3s;
}
.step:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.step .ico { font-size: 1.75rem; line-height: 1; display: block; margin-bottom: .75rem; }
.step h3 { font-size: 1.125rem; margin: 0 0 .5rem; }
.step p { margin: 0; font-size: .9375rem; color: var(--grey-600); }

.steps-note {
  margin: 1.5rem 0 0;
  font-size: .875rem; color: var(--grey-500);
}

/* ---------- regel over nieuwe panden ---------- */

.next-line {
  margin: 2.5rem auto 0;
  max-width: 46rem;
  text-align: center;
  background: var(--grey-50);
  border: 1px dashed var(--grey-200);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  color: var(--grey-600);
  font-size: .9375rem;
}
