:root {
  --green: #173B32;
  --night: #102821;
  --bronze: #B08A4A;
  --bronze-dark: #8A6A35;
  --bronze-text: #73551F;
  --bronze-button: #8A6A35;
  --bronze-button-hover: #705326;
  --cream: #F7F3EA;
  --cream-soft: #FBF8F1;
  --blush: #EFE1D6;
  --beige: #EFE6D6;
  --text: #252525;
  --muted: #6F6A61;
  --line: #D8CBB8;
  --white: #FFFFFF;
  --shadow: 0 18px 50px rgba(16, 40, 33, 0.12);
  --shadow-soft: 0 18px 44px rgba(81, 58, 35, 0.09);
  --radius: 8px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 4%, rgba(239, 225, 214, 0.7) 0, rgba(239, 225, 214, 0) 230px),
    linear-gradient(180deg, var(--cream-soft) 0%, var(--cream) 48%, #F4EDE1 100%);
  font-family: "Lato", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.65;
}

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

::selection {
  background: rgba(176, 138, 74, 0.28);
  color: var(--night);
}

.top-clock {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 7px 14px;
  background: linear-gradient(90deg, var(--night), var(--green), var(--night));
  color: var(--white);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0;
  text-align: center;
}

.top-clock span {
  font-variant-numeric: tabular-nums;
}

@media (max-width: 640px) {
  .top-clock {
    font-size: 14px;
    padding-inline: 10px;
  }
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 248, 241, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 26px rgba(16, 40, 33, 0.05);
}

.site-header .container {
  width: min(1560px, calc(100% - 28px));
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: grid;
  gap: 1px;
  color: var(--green);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.1;
  width: 188px;
  min-width: 164px;
}

.brand-logo {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 180ms ease;
}

.brand:hover .brand-logo {
  transform: translateY(-1px);
}

.brand strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 24px;
}

.brand span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  color: var(--green);
  font-size: 12.5px;
  font-weight: 700;
}

.nav-links a {
  position: relative;
  padding: 10px 2px;
  white-space: nowrap;
}

.nav-links a:not(.nav-phone)::after {
  content: "";
  position: absolute;
  left: 2px;
  right: 2px;
  bottom: 5px;
  height: 2px;
  background: var(--bronze);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-links a:not(.nav-phone):hover::after,
.nav-links a:not(.nav-phone):focus-visible::after {
  transform: scaleX(1);
}

.nav-phone {
  color: var(--bronze-text);
  font-weight: 900;
}

.nav-links .nav-phone {
  padding-inline: 8px;
}

.nav-actions {
  display: inline-flex;
  align-items: center;
  gap: 0;
  margin-left: 6px;
}

.nav-actions a {
  min-height: 48px;
  padding: 12px 20px;
  background: rgba(176, 138, 74, 0.1);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--green);
}

.nav-actions a:hover,
.nav-actions a:focus-visible {
  background: var(--bronze);
  color: var(--white);
}

.nav-actions a::after {
  display: none;
}

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

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--green);
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  font-weight: 900;
}

.button,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: var(--bronze);
  color: var(--white);
  font-weight: 900;
  font-size: 15px;
  line-height: 1.2;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(176, 138, 74, 0.18);
  transition: background 280ms ease, border-color 280ms ease, box-shadow 280ms ease, transform 280ms ease;
}

.button:hover,
button:hover {
  background: var(--bronze-dark);
  box-shadow: 0 14px 30px rgba(138, 106, 53, 0.22);
  transform: translateY(-1px);
}

.button.secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.65);
}

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.12);
}

.button.light {
  background: var(--white);
  color: var(--green);
  border-color: var(--line);
  box-shadow: 0 10px 24px rgba(16, 40, 33, 0.08);
}

.button.light:hover {
  background: var(--beige);
}

.callout-phone {
  margin: 16px 0 20px;
  color: inherit;
  font-weight: 900;
}

.callout-phone a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid rgba(176, 138, 74, 0.55);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  color: inherit;
  box-shadow: 0 10px 24px rgba(16, 40, 33, 0.08);
}

.form-box .callout-phone a,
.cta-band .callout-phone a,
.selection-panel .callout-phone a {
  background: var(--white);
  color: var(--green);
  border-color: var(--line);
}

.hero {
  min-height: clamp(620px, 76vh, 820px);
  display: grid;
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(13, 31, 26, 0.88) 0%, rgba(18, 45, 37, 0.7) 39%, rgba(57, 43, 29, 0.2) 66%, rgba(16, 40, 33, 0.04) 100%),
    linear-gradient(180deg, rgba(16, 40, 33, 0.08) 0%, rgba(16, 40, 33, 0.24) 100%),
    url("images/hero-woonkamer.webp") center right / cover;
  box-shadow: inset 0 -80px 95px rgba(16, 40, 33, 0.22);
}

.hero-inner {
  padding: 106px 0 88px;
}

.hero-copy {
  max-width: 710px;
  margin-left: -32px;
  padding: 34px 38px 38px;
  border-left: 2px solid rgba(225, 195, 133, 0.82);
  background: linear-gradient(90deg, rgba(12, 31, 25, 0.48), rgba(12, 31, 25, 0.12) 78%, transparent);
  backdrop-filter: blur(2px);
}

.hero-promises {
  margin: 0 0 24px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  list-style: none;
}

.hero-promises li {
  min-height: 34px;
  padding: 7px 12px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(225, 195, 133, 0.5);
  border-radius: 999px;
  background: rgba(251, 248, 241, 0.11);
  color: rgba(255, 255, 255, 0.96);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.015em;
  box-shadow: 0 10px 24px rgba(8, 24, 19, 0.1);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--bronze-text);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--green);
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.12;
  letter-spacing: 0.006em;
}

.hero h1 {
  max-width: 720px;
  color: var(--white);
  font-size: clamp(48px, 5.8vw, 78px);
  text-shadow: 0 2px 24px rgba(16, 40, 33, 0.28);
}

.hero p {
  max-width: 610px;
  margin: 22px 0 30px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 21px;
}

.hero .eyebrow {
  color: #E1C385;
}

.hero .callout-phone {
  margin-bottom: 18px;
}

.hero .cta-note {
  max-width: 560px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 17px;
  font-weight: 500;
}

.luxury-hero {
  min-height: clamp(620px, 74vh, 760px);
  align-items: start;
}

.luxury-hero .hero-inner {
  padding: 46px 0 70px;
}

.luxury-hero .hero-copy {
  padding-block: 30px 34px;
}

.luxury-hero h1 {
  font-size: clamp(48px, 5vw, 68px);
}

.luxury-hero .hero-intro {
  max-width: 580px;
  margin-block: 16px 22px;
  font-size: 20px;
}

.luxury-hero .hero-promises {
  margin: 20px 0 0;
}

.hero .cta-note strong {
  color: #f0d99f;
  font-weight: 900;
}

.hero-actions {
  align-items: stretch;
}

.hero .hero-primary {
  min-height: 58px;
  padding: 16px 28px;
  font-size: 17px;
  box-shadow: 0 16px 34px rgba(92, 63, 18, 0.32);
}

.hero-proof {
  max-width: 720px;
  margin: 24px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
}

.hero-proof li {
  min-height: 38px;
  padding: 8px 13px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: rgba(251, 248, 241, 0.14);
  color: rgba(255, 255, 255, 0.94);
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(16, 40, 33, 0.12);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

section {
  padding: 94px 0;
}

.section-soft {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0)),
    var(--beige);
}

.geo-summary {
  padding: 40px 0;
  background: var(--cream-soft);
  border-bottom: 1px solid var(--line);
}

.geo-summary-panel {
  padding: 30px 32px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 36px;
  align-items: start;
  border: 1px solid rgba(176, 138, 74, 0.32);
  border-left: 4px solid var(--bronze);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 38px rgba(16, 40, 33, 0.08);
}

.geo-summary-panel h2 {
  margin-bottom: 12px;
  font-size: clamp(30px, 3vw, 40px);
}

.geo-summary-panel .lead {
  margin: 0;
}

.geo-summary-panel .check-list {
  margin: 4px 0 0;
}

.knowledge-meta {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.knowledge-topic {
  scroll-margin-top: 110px;
}

.faq-list {
  max-width: 900px;
  display: grid;
  gap: 12px;
}

.faq-item {
  overflow: clip;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 28px rgba(16, 40, 33, 0.06);
}

.faq-item summary {
  padding: 19px 54px 19px 22px;
  position: relative;
  cursor: pointer;
  color: var(--green);
  font-weight: 900;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  position: absolute;
  top: 14px;
  right: 16px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--bronze-dark);
  font-size: 21px;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item > div {
  padding: 0 22px 20px;
  color: var(--muted);
}

.faq-item > div p {
  margin: 0;
}

.zonnelux-advisor-band {
  padding: 34px 0 56px;
}

.zonnelux-advisor-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 26px;
  align-items: center;
  padding: 32px;
  background: var(--green);
  color: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 22px 54px rgba(16, 40, 33, 0.14);
}

.zonnelux-advisor-panel h2 {
  margin-bottom: 12px;
  color: var(--white);
  font-size: clamp(30px, 3.4vw, 42px);
}

.zonnelux-advisor-panel p {
  color: rgba(255, 255, 255, 0.84);
}

.zonnelux-advisor-panel .eyebrow {
  color: var(--bronze-text);
}

.zonnelux-advisor-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.zonnelux-advisor-actions button {
  width: 100%;
  min-height: 46px;
  padding: 12px 14px;
  background: var(--white);
  color: var(--green);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: none;
  text-align: left;
}

.zonnelux-advisor-actions button:hover {
  background: var(--bronze);
  color: var(--white);
}

.section-dark {
  background:
    radial-gradient(circle at 82% 18%, rgba(176, 138, 74, 0.18), rgba(176, 138, 74, 0) 270px),
    linear-gradient(135deg, var(--green), var(--night));
  color: var(--white);
}

.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

.section-head {
  max-width: 780px;
  margin-bottom: 44px;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-head h1,
.section-head h2 {
  font-size: clamp(32px, 4vw, 46px);
}

.section-head p,
.lead {
  color: var(--muted);
  font-size: 19px;
}

.section-head h1,
.section-head h2,
.page-hero h1,
.hero h1 {
  text-wrap: balance;
}

.section-dark .section-head p,
.section-dark .lead {
  color: rgba(255, 255, 255, 0.82);
}

.intro-grid,
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}

.quote-panel {
  padding: 34px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(251, 248, 241, 0.92));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.quote-panel strong {
  display: block;
  color: var(--green);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 30px;
  line-height: 1.2;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.cards.two {
  grid-template-columns: repeat(2, 1fr);
}

.cards.three {
  grid-template-columns: repeat(3, 1fr);
}

.cards.four,
.brand-grid {
  grid-template-columns: repeat(4, 1fr);
}

.card,
.brand-card,
.step,
.style-card {
  min-height: 100%;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: border-color 280ms ease, box-shadow 280ms ease, transform 280ms ease;
}

.linked-card {
  display: block;
  color: inherit;
  text-decoration: none;
}

.linked-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  color: var(--green);
  font-weight: 800;
}

.linked-card .card-link::after {
  content: "→";
  color: var(--bronze-text);
  transition: transform 180ms ease;
}

.linked-card:hover .card-link::after,
.linked-card:focus-visible .card-link::after {
  transform: translateX(4px);
}

.linked-card:hover,
.linked-card:focus-visible {
  border-color: var(--bronze-text);
  box-shadow: 0 14px 34px rgba(16, 40, 33, 0.12);
  transform: translateY(-2px);
}

.card:not(.linked-card):hover,
.brand-card:hover,
.step:hover,
.style-card:hover {
  border-color: rgba(176, 138, 74, 0.5);
  box-shadow: 0 18px 42px rgba(16, 40, 33, 0.11);
}

.linked-card:focus-visible {
  outline: 3px solid rgba(176, 138, 74, 0.35);
  outline-offset: 4px;
}

.card.media {
  padding: 0;
  overflow: hidden;
}

.media-frame {
  position: relative;
  overflow: hidden;
  background: var(--beige);
}

.home-image-cards .media-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(225, 195, 133, 0.05), rgba(16, 40, 33, 0.07));
}

.card.media .card-image {
  transition: transform 520ms cubic-bezier(0.2, 0.65, 0.3, 1);
}

.card.media:hover .card-image,
.card.media:focus-within .card-image {
  transform: scale(1.025);
}

.card.media .card-body {
  padding: 24px 26px 28px;
}

.card-image,
.page-image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--beige);
}

.card-image {
  height: clamp(220px, 18vw, 300px);
}

.text-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  color: var(--green);
  font-weight: 900;
}

.text-link::after {
  content: "→";
  color: var(--bronze-text);
  transition: transform 280ms ease;
}

.text-link:hover::after,
.text-link:focus-visible::after {
  transform: translateX(5px);
}

.home-values-section {
  padding: 0;
  background: var(--cream-soft);
  border-bottom: 1px solid var(--line);
}

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

.home-values article {
  min-height: 230px;
  padding: 46px 42px;
  border-right: 1px solid var(--line);
}

.home-values article:first-child {
  border-left: 1px solid var(--line);
}

.home-values h2 {
  font-size: clamp(27px, 2.7vw, 36px);
}

.home-values p:last-child,
.home-intro-copy p,
.home-journey p {
  color: var(--muted);
}

.home-intro .section-head {
  margin-bottom: 0;
}

.home-intro-copy {
  max-width: 560px;
}

.home-journey {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--line);
}

.home-journey article {
  min-height: 260px;
  padding: 36px 30px;
  background: rgba(255, 255, 255, 0.88);
}

.home-journey span {
  display: block;
  margin-bottom: 42px;
  color: var(--bronze-text);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.home-journey h3 {
  margin-bottom: 14px;
  font-size: 25px;
}

.home-image-cards .card-body {
  min-height: 220px;
}

.home-image-cards .card-image {
  aspect-ratio: 4 / 3;
  filter: saturate(0.88) contrast(0.97) brightness(0.99);
}

.home-services .card {
  padding: 38px 34px;
}

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

.home-brand-grid .brand-card {
  display: grid;
  place-items: center;
  min-height: 112px;
  text-align: center;
}

.centered-action {
  margin: 34px 0 0;
  text-align: center;
}

.home-wooncheck .split {
  align-items: center;
}

.home-advice-figure {
  margin: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.home-advice-figure img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(0.88) contrast(0.97) brightness(0.99);
}

.home-advice-figure figcaption {
  padding: 16px 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

.home-heritage {
  background:
    radial-gradient(circle at 12% 16%, rgba(176, 138, 74, 0.12), transparent 280px),
    var(--cream-soft);
}

.home-heritage h2 {
  font-size: clamp(34px, 4.4vw, 54px);
}

.page-image {
  height: clamp(260px, 32vw, 420px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.page-image.wide {
  aspect-ratio: 16 / 9;
  height: clamp(240px, 30vw, 390px);
}

.card h3,
.brand-card h3,
.step h3 {
  margin-bottom: 12px;
  font-size: 25px;
}

.card p,
.brand-card p,
.step p,
.check-list li {
  color: var(--muted);
}

.card .button,
.brand-card .button {
  margin-top: 12px;
}

.selection-band {
  background:
    linear-gradient(90deg, rgba(251, 248, 241, 0.96), rgba(247, 243, 234, 0.82), rgba(239, 225, 214, 0.44)),
    url("images/showroom-heida/heida-interieurs-showroom-rijswijk-rode-designbank-raamdecoratie-uitsnede.webp") center / cover;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.selection-panel {
  max-width: 760px;
  padding: 42px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
}

.selection-panel h2 {
  font-size: clamp(32px, 4vw, 46px);
}

.selection-panel p {
  color: var(--muted);
}

.leolux-offer {
  background:
    radial-gradient(circle at 88% 18%, rgba(176, 138, 74, 0.22), rgba(176, 138, 74, 0) 280px),
    linear-gradient(135deg, #fffdf8, var(--beige));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.leolux-offer-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: center;
}

.leolux-offer h2 {
  max-width: 620px;
  font-size: clamp(38px, 4.5vw, 58px);
}

.leolux-offer .lead {
  color: var(--muted);
}

.offer-deadline {
  margin: 24px 0 18px;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: linear-gradient(135deg, var(--green), var(--night));
  color: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 18px 40px rgba(16, 40, 33, 0.16);
}

.offer-deadline-label {
  display: block;
  margin-bottom: 5px;
  color: #E1C385;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.offer-deadline strong {
  color: var(--white);
}

.countdown-boxes {
  display: grid;
  grid-template-columns: repeat(3, minmax(58px, 1fr));
  gap: 8px;
  min-width: 214px;
}

.countdown-boxes span {
  min-height: 64px;
  padding: 8px;
  display: grid;
  place-items: center;
  text-align: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: calc(var(--radius) - 2px);
}

.countdown-boxes strong {
  display: block;
  font-size: 24px;
  line-height: 1;
}

.countdown-boxes small {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.check-list.compact {
  margin: 22px 0;
  gap: 8px;
}

.check-list.compact li {
  padding: 12px 14px 12px 40px;
  font-size: 16px;
}

.offer-figure {
  position: relative;
  margin: 0;
  padding: 12px;
  background: linear-gradient(145deg, var(--white), var(--cream-soft));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.offer-figure::before {
  content: "Tijdelijk voordeel";
  position: absolute;
  top: 26px;
  left: 26px;
  z-index: 1;
  padding: 9px 12px;
  background: var(--bronze);
  color: var(--white);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.offer-figure img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  background: var(--white);
  border-radius: calc(var(--radius) - 2px);
}

.offer-figure figcaption {
  padding: 12px 6px 2px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
  text-align: center;
}

.showroom-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.showroom-photo-strip {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  gap: 14px;
  margin-top: 32px;
}

.showroom-photo-strip img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--beige);
  box-shadow: var(--shadow-soft);
}

.showroom-card {
  display: grid;
  overflow: hidden;
  background: linear-gradient(145deg, var(--white), var(--cream-soft));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.showroom-card:hover {
  border-color: rgba(176, 138, 74, 0.5);
  box-shadow: 0 18px 42px rgba(16, 40, 33, 0.12);
  transform: translateY(-2px);
}

.showroom-card > img {
  display: block;
  width: 100%;
  height: clamp(240px, 20vw, 340px);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--beige);
}

.showroom-extra-images {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 10px 12px 0;
  background: linear-gradient(145deg, var(--white), var(--cream-soft));
}

.showroom-extra-images img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(176, 138, 74, 0.22);
}

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

.showroom-meta {
  margin: 0 0 8px;
  color: var(--bronze-text);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.showroom-card h3 {
  font-size: 25px;
}

.showroom-card p {
  color: var(--muted);
}

.price-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.showroom-price-label {
  display: inline-flex;
  width: fit-content;
  color: var(--bronze-text);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.showroom-price {
  align-items: baseline;
  gap: 12px;
}

.showroom-price em {
  font-style: normal;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.model-details {
  display: grid;
  gap: 7px;
  margin: 16px 0;
  padding: 14px;
  background: var(--cream-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

.model-details span strong {
  color: var(--green);
}

.price-row strong {
  color: var(--bronze-dark);
  font-size: 17px;
}

.price-was {
  text-decoration: line-through;
  text-decoration-thickness: 1px;
  text-decoration-color: var(--line);
}

.status {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(176, 138, 74, 0.14);
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.showroom-availability {
  display: inline-flex;
  margin-left: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.showroom-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.showroom-actions .button {
  margin-top: 0;
}

.editable-blocks {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.editable-blocks .container {
  display: grid;
  gap: 22px;
}

.editable-block {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 28px;
  align-items: center;
  padding: 30px;
  background: linear-gradient(145deg, var(--white), var(--cream-soft));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.editable-block.no-image,
.editable-tekst {
  grid-template-columns: 1fr;
}

.editable-foto_links {
  grid-template-columns: 0.8fr 1fr;
}

.editable-copy h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 4vw, 42px);
}

.editable-copy p {
  color: var(--muted);
}

.editable-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--beige);
}

.status.reserved,
.status.gereserveerd {
  color: var(--bronze-dark);
}

.status.sold,
.status.verkocht {
  color: var(--muted);
}

.subtle-note {
  margin-top: 24px;
  padding: 18px 20px;
  background: rgba(176, 138, 74, 0.12);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--green);
  font-weight: 700;
}

.feature-list,
.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.feature-list {
  grid-template-columns: repeat(4, 1fr);
}

.feature-list li,
.check-list li {
  padding: 18px 18px 18px 46px;
  position: relative;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
}

.check-list li {
  background: linear-gradient(145deg, var(--white), var(--cream-soft));
  border-color: var(--line);
  box-shadow: 0 12px 28px rgba(81, 58, 35, 0.06);
}

.feature-list li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 26px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--bronze);
}

.brand-grid {
  display: grid;
  gap: 16px;
}

.brand-card {
  padding: 24px;
}

.brand-card h3 {
  font-size: 22px;
}

.brand-group-card .card-image {
  aspect-ratio: 16 / 9;
}

.brand-pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 18px;
}

.brand-pill-list a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 11px;
  background: var(--cream-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--green);
  font-size: 14px;
  font-weight: 900;
}

.brand-pill-list a:hover,
.brand-pill-list a:focus-visible {
  background: var(--bronze);
  color: var(--white);
}

.page-hero {
  padding: 78px 0 58px;
  background:
    radial-gradient(circle at 82% 20%, rgba(176, 138, 74, 0.2), rgba(176, 138, 74, 0) 260px),
    linear-gradient(135deg, var(--green), var(--night));
  color: var(--white);
}

.page-hero h1 {
  max-width: 860px;
  color: var(--white);
  font-size: clamp(34px, 5vw, 48px);
}

.page-hero p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 20px;
}

.form-box {
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.form-logo {
  display: block;
  width: min(190px, 62%);
  height: auto;
  margin: 0 0 18px;
}

.form-note {
  margin: 0 0 4px;
  padding: 12px 14px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.form-box input[type="file"] {
  padding: 10px;
  background: var(--white);
}

form {
  display: grid;
  gap: 16px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--green);
  font-size: 14px;
  font-weight: 900;
}

.website-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream-soft);
  color: var(--text);
  font: inherit;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  background: var(--white);
  border-color: var(--bronze-text);
  box-shadow: 0 0 0 3px rgba(176, 138, 74, 0.17);
}

textarea {
  min-height: 128px;
  resize: vertical;
}

.form-status {
  margin: 4px 0 0;
  font-weight: 800;
  color: var(--muted);
}

.form-status.success {
  color: var(--green);
}

.form-status.error {
  color: #8a2f24;
}

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

.field {
  display: grid;
  gap: 7px;
}

.field label {
  color: var(--green);
  font-size: 14px;
  font-weight: 900;
}

.form-privacy {
  margin: -4px 0 0;
  padding: 12px 14px;
  background: var(--cream-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.form-privacy a,
.privacy-page a {
  color: var(--green);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.privacy-page h2 {
  margin-top: 30px;
  font-size: clamp(26px, 3vw, 34px);
}

.narrow {
  max-width: 860px;
}

.cta-band {
  padding: 52px;
  background:
    radial-gradient(circle at 82% 18%, rgba(176, 138, 74, 0.2), rgba(176, 138, 74, 0) 240px),
    linear-gradient(135deg, var(--green), var(--night));
  color: var(--white);
  border-radius: var(--radius);
}

.cta-band h2 {
  color: var(--white);
  font-size: clamp(30px, 4vw, 44px);
}

.cta-band p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.84);
}

.bus-visual {
  overflow: hidden;
  background: linear-gradient(145deg, var(--white), var(--cream-soft));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.bus-visual img {
  width: 100%;
  aspect-ratio: 2 / 1;
  object-fit: cover;
}

.style-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.swatch {
  min-height: 96px;
  padding: 12px;
  display: flex;
  align-items: end;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(16, 40, 33, 0.08);
}

.swatch.light {
  color: var(--text);
}

.site-footer {
  padding: 52px 0 96px;
  background:
    linear-gradient(180deg, var(--night), #0B1E19);
  color: rgba(255, 255, 255, 0.78);
}

.site-footer a {
  transition: color 180ms ease;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 0.85fr;
  gap: 32px;
}

.site-footer h2,
.site-footer h3 {
  color: var(--white);
}

.footer-brand {
  display: grid;
  gap: 16px;
  max-width: 330px;
}

.footer-brands {
  grid-column: 1 / -1;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-logo {
  width: min(220px, 100%);
  height: auto;
  padding: 12px 14px;
  background: var(--cream-soft);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.13);
}

.footer-links,
.hours {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.brand-links {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: 18px;
  row-gap: 8px;
}

.mobile-actions {
  display: none;
}

.chatbot {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  padding: 0;
  font-family: "Lato", Arial, sans-serif;
}

.chatbot-toggle {
  min-height: 50px;
  box-shadow: 0 16px 38px rgba(16, 40, 33, 0.24);
}

.chatbot-toggle-label-short {
  display: none;
}

.chatbot.is-open .chatbot-toggle {
  visibility: hidden;
}

.chatbot-zonnelux .chatbot-toggle {
  background: var(--green);
}

.chatbot-zonnelux .chatbot-toggle:hover {
  background: var(--night);
}

.chatbot-panel {
  position: absolute;
  right: 0;
  bottom: 64px;
  width: min(360px, calc(100vw - 32px));
  max-height: calc(100dvh - 108px);
  display: grid;
  grid-template-rows: auto minmax(0, auto) minmax(0, 170px) auto;
  overflow: hidden;
  overscroll-behavior: contain;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 26px 76px rgba(16, 40, 33, 0.25);
}

.chatbot-panel[hidden] {
  display: none;
}

.chatbot-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 18px 16px;
  background:
    radial-gradient(circle at 88% 20%, rgba(176, 138, 74, 0.22), rgba(176, 138, 74, 0) 150px),
    linear-gradient(135deg, var(--green), var(--night));
  color: var(--white);
}

.chatbot-header strong {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 23px;
  line-height: 1.1;
}

.chatbot-header span {
  display: block;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.chatbot-close {
  width: 42px;
  height: 42px;
  min-height: 42px;
  padding: 0;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  color: var(--white);
  font-size: 30px;
  line-height: 1;
  box-shadow: none;
}

.chatbot-close:hover {
  background: var(--bronze);
  transform: none;
}

.chatbot-messages {
  max-height: min(310px, 34dvh);
  overflow-y: auto;
  padding: 16px;
  display: grid;
  gap: 10px;
  background:
    linear-gradient(180deg, var(--cream-soft), var(--cream));
}

.chatbot-message {
  max-width: 92%;
  padding: 12px 13px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(145deg, var(--white), var(--cream-soft));
}

.chatbot-message.user {
  justify-self: end;
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}

.chatbot-message p {
  margin: 0;
  font-size: 15px;
  line-height: 1.45;
}

.chatbot-message-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.chatbot-message-actions a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 10px;
  background: var(--bronze);
  color: var(--white);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 900;
}

.chatbot-suggestions {
  padding: 12px 14px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-height: 170px;
  overflow-y: auto;
  overscroll-behavior: contain;
  background: var(--white);
}

.chatbot-suggestions button {
  min-height: 34px;
  padding: 8px 10px;
  background: var(--cream-soft);
  color: var(--green);
  border-color: var(--line);
  font-size: 13px;
}

.chatbot-form {
  padding: 14px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  background: var(--white);
}

.chatbot-label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.chatbot-form input {
  min-height: 44px;
  font-size: 15px;
}

.chatbot-form button {
  min-height: 44px;
  padding-inline: 14px;
}

.chatbot-report {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 39;
}

.chatbot-report-toggle {
  min-height: 44px;
  background: var(--night);
  box-shadow: 0 14px 34px rgba(16, 40, 33, 0.18);
}

.chatbot-report-panel {
  position: absolute;
  left: 0;
  bottom: 58px;
  width: min(420px, calc(100vw - 32px));
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 26px 76px rgba(16, 40, 33, 0.24);
}

.chatbot-report-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px;
  background:
    radial-gradient(circle at 88% 20%, rgba(176, 138, 74, 0.2), rgba(176, 138, 74, 0) 140px),
    linear-gradient(135deg, var(--night), var(--green));
  color: var(--white);
}

.chatbot-report-head strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 22px;
}

.chatbot-report-head button {
  width: 34px;
  height: 34px;
  min-height: 34px;
  padding: 0;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
  font-size: 24px;
}

.chatbot-report-list {
  max-height: 320px;
  overflow-y: auto;
  padding: 14px;
  display: grid;
  gap: 10px;
  background: var(--cream-soft);
}

.chatbot-report-list article {
  padding: 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.chatbot-report-list strong,
.chatbot-report-list span,
.chatbot-report-list p {
  display: block;
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
}

.chatbot-report-list span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.chatbot-report-list p {
  margin-top: 8px;
  color: var(--muted);
}

.chatbot-report-actions {
  padding: 14px;
  display: flex;
  gap: 8px;
  background: var(--white);
}

.chatbot-report-actions button {
  min-height: 40px;
  padding: 9px 12px;
  font-size: 13px;
}

@media (max-width: 920px) {
  body { font-size: 17px; }

  .brand {
    width: 180px;
  }

  .menu-toggle { display: inline-flex; align-items: center; justify-content: center; }

  .nav-links {
    position: absolute;
    inset: 78px 0 auto 0;
    display: none;
    padding: 18px 20px 24px;
    flex-direction: column;
    align-items: stretch;
    background:
      linear-gradient(180deg, var(--cream-soft), var(--cream));
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 40px rgba(16, 40, 33, 0.1);
  }

  .nav-links.open { display: flex; }

  .nav-links .button { width: 100%; }

  .nav-links .nav-phone {
    padding: 12px 0;
    text-align: center;
  }

  .hero {
    min-height: 620px;
    background:
      linear-gradient(180deg, rgba(16, 40, 33, 0.88) 0%, rgba(16, 40, 33, 0.62) 100%),
      url("images/hero-woonkamer.webp") center / cover;
  }

  .hero-inner { padding: 96px 0 74px; }
  .hero-copy {
    max-width: 720px;
    margin-left: 0;
    padding: 28px 28px 32px;
  }
  .hero p { font-size: 18px; }
  .hero-proof { max-width: 560px; }

  .geo-summary-panel {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 26px;
  }

  section { padding: 68px 0; }

  .intro-grid,
  .split,
  .editable-block,
  .leolux-offer-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .offer-deadline {
    align-items: stretch;
    flex-direction: column;
  }

  .countdown-boxes {
    min-width: 0;
    width: 100%;
  }

	  .cards,
	  .cards.two,
	  .cards.three,
	  .cards.four,
  .brand-grid,
  .feature-list,
	  .showroom-grid,
	  .showroom-photo-strip,
	  .brand-links,
	  .style-grid {
	    grid-template-columns: 1fr 1fr;
	  }

  .home-values {
    grid-template-columns: 1fr;
  }

  .home-values article,
  .home-values article:first-child {
    min-height: 0;
    padding: 34px 28px;
    border-left: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .home-journey {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mobile-actions {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 30;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line);
    background: rgba(251, 248, 241, 0.96);
    backdrop-filter: blur(12px);
  }

  .mobile-actions a {
    min-height: 58px;
    display: grid;
    place-items: center;
    color: var(--green);
    font-size: 13px;
    font-weight: 900;
    text-align: center;
    border-right: 1px solid var(--line);
  }

  .chatbot {
    right: 14px;
    bottom: 72px;
  }

  .chatbot-report {
    left: 14px;
    bottom: 72px;
  }

  .chatbot-panel {
    bottom: 62px;
  }

  .chatbot-report-panel {
    bottom: 56px;
  }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1120px); }
  .mobile-actions {
    right: 25%;
  }
  .brand {
    width: 155px;
    min-width: 150px;
  }
  .brand strong { font-size: 22px; }
  .hero h1 { font-size: 40px; }
  .hero-copy {
    padding: 24px 20px 28px;
    border-left-width: 1px;
  }
  .hero-promises {
    display: grid;
    grid-template-columns: 1fr;
    gap: 7px;
  }
  .hero-promises li {
    min-height: 38px;
    justify-content: center;
    padding: 7px 9px;
    border-radius: 10px;
    text-align: center;
    font-size: 12px;
  }
  .luxury-hero {
    min-height: 620px;
  }
  .luxury-hero .hero-inner {
    padding: 36px 0 64px;
  }
  .luxury-hero .hero-copy {
    padding-block: 24px 28px;
  }
  .luxury-hero h1 {
    font-size: 38px;
  }
  .luxury-hero .hero-intro {
    margin-block: 14px 18px;
    font-size: 17px;
  }
  .hero-actions .button {
    width: 100%;
  }
  .hero .hero-primary {
    min-height: 60px;
  }
  .geo-summary {
    padding: 28px 0;
  }
  .geo-summary-panel {
    padding: 22px 18px;
  }
  .faq-item summary {
    padding-left: 18px;
  }
  .faq-item > div {
    padding-inline: 18px;
  }
  .page-hero h1 { font-size: 32px; }
  .section-head h1,
  .section-head h2 { font-size: 32px; }
	  .cards,
	  .cards.two,
	  .cards.three,
	  .cards.four,
  .brand-grid,
  .feature-list,
	  .showroom-grid,
	  .showroom-photo-strip,
	  .brand-links,
	  .style-grid,
  .zonnelux-advisor-panel,
  .field-grid {
    grid-template-columns: 1fr;
  }
  .card,
  .brand-card,
  .step,
  .form-box,
  .quote-panel {
    padding: 22px;
  }
  .cta-band { padding: 30px 22px; }
  .selection-panel { padding: 28px 22px; }
  .actions .button { width: 100%; }

  .home-journey {
    grid-template-columns: 1fr;
  }

  .home-journey article {
    min-height: 0;
    padding: 28px 24px;
  }

  .home-journey span {
    margin-bottom: 22px;
  }

  .home-brand-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .zonnelux-advisor-panel {
    padding: 24px;
  }

  .zonnelux-advisor-actions {
    grid-template-columns: 1fr;
  }

  .chatbot {
    left: 75%;
    right: 0;
    top: auto;
    bottom: 0;
    width: 25%;
  }

  .chatbot-toggle {
    width: 100%;
    min-height: 70px;
    padding: 8px 6px;
    border-radius: 0;
    border-color: var(--bronze-dark);
    box-shadow: none;
    font-size: 12px;
  }

  .chatbot-toggle-label-full {
    display: none;
  }

  .chatbot-toggle-label-short {
    display: inline;
  }

  .chatbot-panel {
    position: fixed;
    left: 14px;
    right: 14px;
    top: auto;
    bottom: 80px;
    width: auto;
    max-height: calc(100dvh - 100px);
    grid-template-rows: auto minmax(0, auto) minmax(0, 160px) auto;
  }

  .chatbot-messages {
    max-height: min(220px, 25dvh);
  }

  .chatbot-suggestions {
    max-height: min(160px, 21dvh);
  }

  .chatbot-form {
    grid-template-columns: 1fr;
  }

  .chatbot-report {
    left: 14px;
    right: 14px;
  }

  .chatbot-report-toggle,
  .chatbot-report-panel {
    width: 100%;
  }
}

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


/* Toegankelijkheid: formulieren, knoppen en contrast */
.form-box form {
  gap: 18px;
}

.form-box .field,
.field {
  gap: 8px;
}

.form-box button,
.form-submit button {
  min-height: 54px;
  width: 100%;
}

.button:focus-visible,
button:focus-visible,
.nav a:focus-visible,
.nav-actions a:focus-visible,
.mobile-actions a:focus-visible,
a.card-link:focus-visible {
  outline: 3px solid rgba(115, 85, 31, 0.35);
  outline-offset: 3px;
}

@media (max-width: 640px) {
  .button,
  button,
  .nav-actions a {
    min-height: 54px;
    font-size: 16px;
  }

  .mobile-actions a {
    min-height: 64px;
    font-size: 14px;
  }

  .form-box input,
  .form-box select,
  .form-box textarea {
    min-height: 52px;
    font-size: 16px;
  }

  .field label,
  .form-box label {
    font-size: 15px;
  }
}
.showroom-story-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 28px;
}

.showroom-story-gallery figure {
  margin: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.showroom-story-gallery img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.showroom-story-gallery figcaption {
  padding: 14px 16px;
  color: var(--ink);
  font-weight: 700;
}

@media (max-width: 900px) {
  .showroom-story-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .showroom-story-gallery {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
