:root {
  --bg: #f7f3ec;
  --bg-soft: #efe7da;
  --surface: #ffffff;
  --surface-2: #f3ecdf;
  --ink: #211c16;
  --ink-soft: #3c352c;
  --muted: #7c7166;
  --accent: #b08d4f;
  --accent-deep: #8c6d39;
  --accent-soft: #d8c096;
  --cream: #f7f3ec;
  --line: rgba(33, 28, 22, 0.10);
  --radius: 18px;
  --radius-lg: 26px;
  --shadow: 0 22px 48px rgba(120, 96, 56, 0.16);
  --shadow-sm: 0 10px 26px rgba(120, 96, 56, 0.12);
  --maxw: 1140px;

  /* Photos */
  --img-hero: url("https://images.unsplash.com/photo-1616594039964-ae9021a400a0?w=1100&q=80&auto=format&fit=crop");
  --img-stil: url("https://images.unsplash.com/photo-1522771739844-6a9f6d5f14af?w=900&q=80&auto=format&fit=crop");
  --img-rustig: url("https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?w=900&q=80&auto=format&fit=crop");
  --img-diep: url("https://images.unsplash.com/photo-1631049307264-da0ec9d70304?w=900&q=80&auto=format&fit=crop");
  --img-about: url("https://images.unsplash.com/photo-1571508601891-ca5e7a713859?w=1000&q=80&auto=format&fit=crop");
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

h1, h2, h3, h4 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--ink);
}

a { color: inherit; text-decoration: none; }
em { font-style: italic; color: var(--accent-deep); }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 26px; border-radius: 999px; font-weight: 600; font-size: 0.95rem;
  cursor: pointer; border: 1px solid transparent;
  transition: transform 0.15s ease, background 0.2s ease, box-shadow 0.2s ease, color 0.2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: #fff;
  box-shadow: 0 12px 26px rgba(140, 109, 57, 0.28);
}
.btn-primary:hover { box-shadow: 0 16px 32px rgba(140, 109, 57, 0.36); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { background: var(--surface-2); border-color: var(--accent); }
.btn-outline { background: var(--surface); color: var(--ink); border-color: var(--line); box-shadow: var(--shadow-sm); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent-deep); }
.btn-full { width: 100%; }

/* ---------- Topbar ---------- */
.topbar { background: var(--ink); color: var(--accent-soft); font-size: 0.85rem; letter-spacing: 0.02em; }
.topbar-inner { text-align: center; padding: 10px 24px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(247, 243, 236, 0.82);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s, background 0.3s;
}
.site-header.scrolled { box-shadow: 0 8px 28px rgba(120, 96, 56, 0.12); background: rgba(247, 243, 236, 0.96); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-family: "Fraunces", serif; font-size: 1.4rem; font-weight: 600; letter-spacing: 0.01em; }
.brand-mark { width: 22px; height: 22px; border-radius: 50%; background: linear-gradient(135deg, var(--accent-soft), var(--accent)); box-shadow: inset -6px -3px 0 0 rgba(140,109,57,0.35); }
.nav-links { display: flex; align-items: center; gap: 26px; list-style: none; }
.nav-links a { color: var(--ink-soft); font-weight: 500; font-size: 0.93rem; transition: color 0.2s; }
.nav-links a:hover { color: var(--accent-deep); }
.nav-cta { padding: 10px 20px; border-radius: 999px; background: linear-gradient(135deg, var(--accent), var(--accent-deep)); color: #fff !important; font-weight: 600; box-shadow: 0 10px 22px rgba(140,109,57,0.25); }
.nav-cta:hover { color: #fff !important; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 26px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform 0.25s, opacity 0.25s; }

/* ---------- Hero ---------- */
.hero { padding: 78px 0 64px; }
.hero-inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.eyebrow { text-transform: uppercase; letter-spacing: 0.2em; font-size: 0.76rem; color: var(--accent-deep); font-weight: 600; margin-bottom: 18px; }
.hero h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); margin-bottom: 22px; font-weight: 400; }
.lead { font-size: 1.12rem; color: var(--muted); max-width: 46ch; margin-bottom: 30px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 26px; }
.hero-rating { display: flex; align-items: center; gap: 12px; color: var(--muted); font-size: 0.92rem; flex-wrap: wrap; }
.hero-rating strong { color: var(--ink); }
.stars-row { color: var(--accent); letter-spacing: 2px; }

/* Hero photo */
.hero-card {
  position: relative; height: 460px; border-radius: var(--radius-lg);
  background-image: var(--img-hero); background-size: cover; background-position: center;
  box-shadow: var(--shadow); border: 1px solid var(--line);
  overflow: hidden;
}
.hero-card > * { display: none !important; }
.hero-card::after {
  content: ""; position: absolute; inset: 0;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
}

/* ---------- Stats ---------- */
.stats { margin-top: 54px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; padding: 28px; border-radius: var(--radius-lg); background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.stat { text-align: center; }
.stat-num { display: block; font-family: "Fraunces", serif; font-size: 1.95rem; color: var(--accent-deep); }
.stat-label { color: var(--muted); font-size: 0.88rem; }

/* ---------- USP ---------- */
.usp { padding: 44px 0; }
.usp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.usp-item { display: flex; gap: 14px; align-items: flex-start; padding: 22px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.usp-ico { font-size: 1.5rem; }
.usp-item strong { display: block; margin-bottom: 2px; }
.usp-item p { color: var(--muted); font-size: 0.88rem; }

/* ---------- Section basics ---------- */
section { padding: 76px 0; }
.section-eyebrow { text-transform: uppercase; letter-spacing: 0.2em; font-size: 0.74rem; color: var(--accent-deep); font-weight: 600; margin-bottom: 14px; }
.section-title { font-size: clamp(1.9rem, 4vw, 2.8rem); margin-bottom: 16px; font-weight: 400; }
.section-intro { color: var(--muted); max-width: 60ch; margin-bottom: 40px; font-size: 1.05rem; }

/* ---------- Rust ---------- */
.rust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 36px; }
.rust-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 28px; box-shadow: var(--shadow-sm); transition: transform 0.2s, box-shadow 0.2s; }
.rust-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.rust-num { font-family: "Fraunces", serif; font-size: 1.7rem; color: var(--accent); margin-bottom: 12px; }
.rust-card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.rust-card p { color: var(--muted); font-size: 0.98rem; }

/* ---------- Advies ---------- */
.advies-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.advies-item { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 24px; box-shadow: var(--shadow-sm); transition: transform 0.2s, box-shadow 0.2s; }
.advies-item:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.advies-icon { font-size: 1.8rem; display: block; margin-bottom: 14px; }
.advies-item h3 { font-size: 1.15rem; margin-bottom: 8px; }
.advies-item p { color: var(--muted); font-size: 0.94rem; }

/* ---------- Werkwijze ---------- */
.werkwijze { background: var(--bg-soft); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.step { text-align: center; padding: 0 12px; }
.step-circle { width: 66px; height: 66px; margin: 0 auto 18px; display: grid; place-items: center; border-radius: 50%; background: linear-gradient(135deg, var(--accent), var(--accent-deep)); color: #fff; font-family: "Fraunces", serif; font-size: 1.6rem; font-weight: 600; box-shadow: 0 12px 26px rgba(140,109,57,0.3); }
.step h3 { font-size: 1.25rem; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 0.96rem; max-width: 32ch; margin: 0 auto; }

/* ---------- Matras cards ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.card { position: relative; display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform 0.2s, box-shadow 0.2s; }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card-featured { border-color: rgba(176, 141, 79, 0.5); }
.card-featured .card-body { background: linear-gradient(180deg, rgba(176,141,79,0.06), transparent); }

.card-visual { height: 200px; position: relative; overflow: hidden; background-size: cover; background-position: center; }
.visual-stil { background-image: var(--img-stil); }
.visual-rustig { background-image: var(--img-rustig); }
.visual-diep { background-image: var(--img-diep); }
.mattress { display: none !important; }

.card-body { display: flex; flex-direction: column; padding: 26px 26px 28px; flex: 1; }
.card-badge { align-self: flex-start; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600; color: var(--muted); background: var(--surface-2); padding: 5px 12px; border-radius: 999px; margin-bottom: 14px; }
.card-badge-accent { background: linear-gradient(135deg, var(--accent), var(--accent-deep)); color: #fff; }
.card-name { font-size: 1.7rem; margin-bottom: 4px; transition: color 0.2s; }
.card-sub { color: var(--accent-deep); font-size: 0.9rem; margin-bottom: 8px; }
.card-rating { font-size: 0.85rem; color: var(--muted); margin-bottom: 14px; }
.card-rating span { color: var(--accent); letter-spacing: 1px; }
.card-desc { color: var(--muted); font-size: 0.96rem; margin-bottom: 18px; }
.card-features { list-style: none; margin-bottom: 22px; display: grid; gap: 10px; }
.card-features li { position: relative; padding-left: 24px; font-size: 0.95rem; }
.card-features li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 700; }
.card-price { font-family: "Fraunces", serif; font-size: 2rem; margin: auto 0 18px; color: var(--ink); }
.card-price .from { display: block; font-family: "Inter"; font-size: 0.8rem; color: var(--muted); font-weight: 500; }

/* ---------- Prijzen ---------- */
.price-table { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--surface); box-shadow: var(--shadow-sm); }
.price-row { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; padding: 16px 24px; align-items: center; border-bottom: 1px solid var(--line); }
.price-row:last-child { border-bottom: 0; }
.price-head { background: var(--surface-2); font-weight: 600; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); }
.price-size { color: var(--accent-deep); font-weight: 600; }
.price-row:not(.price-head):hover { background: var(--surface-2); }

.advice-banner { margin-top: 24px; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; padding: 28px 32px; border-radius: var(--radius); background: linear-gradient(120deg, rgba(176,141,79,0.14), rgba(176,141,79,0.04)); border: 1px solid rgba(176,141,79,0.3); }
.advice-banner h3 { font-size: 1.3rem; margin-bottom: 4px; }
.advice-banner p { color: var(--muted); font-size: 0.96rem; }
.advice-price { font-family: "Fraunces", serif; font-size: 1.9rem; color: var(--accent-deep); text-align: right; }
.advice-price .from { display: block; font-family: "Inter"; font-size: 0.78rem; color: var(--muted); }

/* ---------- Reviews ---------- */
.reviews { background: var(--bg-soft); }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px; display: flex; flex-direction: column; gap: 16px; box-shadow: var(--shadow-sm); }
.review-stars { color: var(--accent); letter-spacing: 2px; font-size: 1.05rem; }
.review p { color: var(--ink-soft); font-size: 0.98rem; line-height: 1.6; flex: 1; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 12px; }
.avatar { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; background: var(--c, var(--accent)); color: #fff; font-weight: 700; font-family: "Fraunces", serif; }
.review-author strong { display: block; font-family: "Inter"; font-size: 0.95rem; }
.review-author span { color: var(--muted); font-size: 0.85rem; }

/* ---------- Contact ---------- */
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact-info { list-style: none; margin-top: 28px; display: grid; gap: 12px; }
.contact-info li { color: var(--muted); }
.contact-info strong { color: var(--ink); display: inline-block; width: 110px; }
.contact-form { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px; display: grid; gap: 18px; box-shadow: var(--shadow); }
.contact-form label { display: grid; gap: 8px; font-size: 0.9rem; font-weight: 500; color: var(--ink-soft); }
.contact-form input, .contact-form textarea { width: 100%; padding: 13px 15px; border-radius: 12px; border: 1px solid var(--line); background: var(--bg); color: var(--ink); font-family: inherit; font-size: 0.98rem; resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(176,141,79,0.15); }
.form-note { text-align: center; color: var(--accent-deep); font-weight: 600; margin-top: 4px; }

.thanks { text-align: center; padding: 24px 8px; display: grid; gap: 12px; justify-items: center; }
.thanks-ico { width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; background: linear-gradient(135deg, var(--accent), var(--accent-deep)); color: #fff; font-size: 1.6rem; font-weight: 700; }
.thanks h3 { font-size: 1.5rem; }
.thanks p { color: var(--muted); max-width: 36ch; }

/* Free-question banner */
.free-banner { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; justify-content: space-between; padding: 22px 28px; margin-bottom: 36px; border-radius: var(--radius); background: linear-gradient(120deg, rgba(176,141,79,0.12), rgba(176,141,79,0.03)); border: 1px solid rgba(176,141,79,0.28); }
.free-banner p { color: var(--ink-soft); }
.free-banner strong { color: var(--ink); }

/* ---------- Footer (espresso) ---------- */
.site-footer { background: var(--ink); color: rgba(247,243,236,0.62); padding: 60px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 36px; padding-bottom: 36px; border-bottom: 1px solid rgba(247,243,236,0.12); }
.brand-footer { font-size: 1.5rem; color: var(--cream); }
.brand-footer .brand-mark { box-shadow: none; }
.footer-brand p { color: rgba(247,243,236,0.58); margin-top: 12px; max-width: 32ch; font-size: 0.95rem; }
.footer-col h4 { font-size: 1rem; margin-bottom: 14px; color: var(--cream); }
.footer-col a { display: block; color: rgba(247,243,236,0.62); font-size: 0.93rem; padding: 5px 0; transition: color 0.2s; }
.footer-col a:hover { color: var(--accent-soft); }
.footer-news p { color: rgba(247,243,236,0.58); font-size: 0.93rem; margin-bottom: 14px; }
.news-form { display: flex; gap: 8px; }
.news-form input { flex: 1; padding: 11px 14px; border-radius: 12px; border: 1px solid rgba(247,243,236,0.16); background: rgba(247,243,236,0.06); color: var(--cream); font-family: inherit; font-size: 0.92rem; }
.news-form input::placeholder { color: rgba(247,243,236,0.4); }
.news-form input:focus { outline: none; border-color: var(--accent); }
.news-form .btn { padding: 11px 18px; font-size: 1.1rem; }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; padding-top: 22px; color: rgba(247,243,236,0.5); font-size: 0.85rem; }

/* ============================================================
   MULTI-PAGE COMPONENTS
   ============================================================ */
.nav-links a.active { color: var(--accent-deep); }
.nav-links a.active:not(.nav-cta)::after { content: ""; display: block; height: 2px; background: var(--accent); border-radius: 2px; margin-top: 4px; }

.page-hero { padding: 56px 0 44px; border-bottom: 1px solid var(--line); background: linear-gradient(180deg, var(--bg-soft), var(--bg)); }
.page-hero h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); margin-bottom: 14px; font-weight: 400; }
.page-hero .lead { margin-bottom: 0; }

.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 0.85rem; color: var(--muted); margin-bottom: 20px; flex-wrap: wrap; }
.breadcrumb a { color: var(--muted); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--accent-deep); }
.breadcrumb span { opacity: 0.5; }
.breadcrumb .current { color: var(--accent-deep); }

.cta-band { background: linear-gradient(120deg, #2b241b, #1a150f); }
.cta-band .container { text-align: center; display: grid; justify-items: center; gap: 22px; }
.cta-band h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); max-width: 18ch; color: var(--cream); font-weight: 400; }
.cta-band p { color: rgba(247,243,236,0.72); max-width: 52ch; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.cta-band .btn-ghost { background: rgba(247,243,236,0.08); color: var(--cream); border-color: rgba(247,243,236,0.25); }
.cta-band .btn-ghost:hover { background: rgba(247,243,236,0.16); border-color: var(--accent-soft); }

/* Matrassen overzicht */
.toolbar { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 32px; }
.filters { display: flex; gap: 10px; flex-wrap: wrap; }
.chip { padding: 9px 18px; border-radius: 999px; border: 1px solid var(--line); background: var(--surface); color: var(--muted); font-size: 0.88rem; font-weight: 500; cursor: pointer; transition: all 0.2s; box-shadow: var(--shadow-sm); }
.chip:hover { color: var(--ink); border-color: var(--accent); }
.chip.active { background: linear-gradient(135deg, var(--accent), var(--accent-deep)); color: #fff; border-color: transparent; }
.toolbar-count { color: var(--muted); font-size: 0.9rem; }

.product-link { color: inherit; display: flex; flex-direction: column; flex: 1; }
.product-link:hover .card-name { color: var(--accent-deep); }

/* Vergelijkingstabel */
.compare-wrap { overflow-x: auto; margin-top: 16px; box-shadow: var(--shadow-sm); border-radius: var(--radius); }
.compare { width: 100%; border-collapse: collapse; min-width: 640px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.compare th, .compare td { padding: 16px 20px; text-align: left; border-bottom: 1px solid var(--line); }
.compare thead th { background: var(--surface-2); font-family: "Fraunces", serif; font-weight: 500; font-size: 1.15rem; }
.compare thead th:first-child { background: var(--surface); }
.compare tbody tr:hover { background: var(--surface-2); }
.compare td:first-child { color: var(--muted); font-weight: 500; }
.compare .compare-price { font-family: "Fraunces", serif; font-size: 1.4rem; color: var(--accent-deep); }
.compare .yes { color: var(--accent-deep); font-weight: 700; }

/* Product detail */
.product-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.gallery-main { height: 420px; border-radius: var(--radius-lg); border: 1px solid var(--line); overflow: hidden; background-size: cover; background-position: center; box-shadow: var(--shadow); }
.thumbs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 12px; }
.thumb { height: 92px; border-radius: 14px; border: 1px solid var(--line); cursor: pointer; transition: border-color 0.2s, transform 0.2s; background-size: cover; background-position: center; box-shadow: var(--shadow-sm); }
.thumb:hover { border-color: var(--accent); transform: translateY(-2px); }

.product-info .product-badge { display: inline-block; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600; color: #fff; background: linear-gradient(135deg, var(--accent), var(--accent-deep)); padding: 6px 14px; border-radius: 999px; margin-bottom: 16px; }
.product-info h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 8px; font-weight: 400; }
.product-info .product-rating { color: var(--muted); font-size: 0.9rem; margin-bottom: 18px; }
.product-info .product-rating span { color: var(--accent); letter-spacing: 1px; }
.product-info .product-desc { color: var(--muted); margin-bottom: 24px; }
.product-price { font-family: "Fraunces", serif; font-size: 2.6rem; margin-bottom: 6px; color: var(--ink); }
.product-price small { font-family: "Inter"; font-size: 0.85rem; color: var(--muted); font-weight: 500; }
.product-sub { color: var(--muted); font-size: 0.9rem; margin-bottom: 24px; }
.product-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }

.hardness { margin-bottom: 28px; }
.hardness-label { display: flex; justify-content: space-between; font-size: 0.85rem; color: var(--muted); margin-bottom: 8px; }
.hardness-label strong { color: var(--ink); }
.hardness-track { height: 10px; border-radius: 999px; background: var(--surface-2); position: relative; overflow: hidden; border: 1px solid var(--line); }
.hardness-fill { position: absolute; top: 0; left: 0; bottom: 0; background: linear-gradient(90deg, var(--accent-soft), var(--accent)); border-radius: 999px; }

.specs { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; margin-top: 10px; background: var(--surface); box-shadow: var(--shadow-sm); }
.spec { padding: 16px 20px; border-bottom: 1px solid var(--line); }
.spec:nth-child(odd) { border-right: 1px solid var(--line); }
.spec dt { font-size: 0.8rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; }
.spec dd { font-weight: 500; }

.included { list-style: none; display: grid; gap: 12px; margin-top: 16px; }
.included li { position: relative; padding-left: 28px; color: var(--ink-soft); }
.included li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 700; }

/* About */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.about-visual { height: 380px; border-radius: var(--radius-lg); border: 1px solid var(--line); background-image: var(--img-about); background-size: cover; background-position: center; box-shadow: var(--shadow); position: relative; overflow: hidden; }
.about-visual > * { display: none !important; }
.about-text h2 { margin-bottom: 16px; }
.about-text p { color: var(--muted); margin-bottom: 14px; }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 36px; }
.value-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px; box-shadow: var(--shadow-sm); }
.value-card .v-ico { font-size: 1.6rem; display: block; margin-bottom: 12px; }
.value-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.value-card p { color: var(--muted); font-size: 0.95rem; }

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 36px; }
.team-card { text-align: center; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 24px; box-shadow: var(--shadow-sm); }
.team-avatar { width: 84px; height: 84px; border-radius: 50%; margin: 0 auto 16px; display: grid; place-items: center; font-family: "Fraunces", serif; font-size: 2rem; font-weight: 600; color: #fff; background: var(--c, var(--accent)); }
.team-card h3 { font-size: 1.2rem; margin-bottom: 2px; }
.team-card .role { color: var(--accent-deep); font-size: 0.9rem; margin-bottom: 10px; }
.team-card p { color: var(--muted); font-size: 0.92rem; }

.timeline { display: grid; gap: 0; margin-top: 36px; max-width: 720px; }
.tl-item { display: grid; grid-template-columns: 90px 1fr; gap: 24px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.tl-item:last-child { border-bottom: 0; }
.tl-year { font-family: "Fraunces", serif; font-size: 1.4rem; color: var(--accent); }
.tl-item h3 { font-size: 1.15rem; margin-bottom: 6px; }
.tl-item p { color: var(--muted); font-size: 0.95rem; }

/* Contact page */
.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-bottom: 48px; }
.contact-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px; text-align: center; box-shadow: var(--shadow-sm); }
.contact-card .c-ico { font-size: 1.6rem; display: block; margin-bottom: 12px; }
.contact-card h3 { font-size: 1.15rem; margin-bottom: 6px; }
.contact-card p { color: var(--muted); font-size: 0.95rem; }
.contact-card a { color: var(--accent-deep); font-weight: 500; }

/* FAQ */
.faq-list { display: grid; gap: 14px; max-width: 820px; }
.faq-item { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 4px 24px; box-shadow: var(--shadow-sm); }
.faq-item summary { cursor: pointer; list-style: none; padding: 18px 0; font-weight: 600; font-size: 1.05rem; display: flex; justify-content: space-between; align-items: center; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--accent); font-size: 1.4rem; transition: transform 0.2s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { color: var(--muted); padding-bottom: 20px; max-width: 65ch; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { height: 320px; order: -1; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .usp-grid { grid-template-columns: repeat(2, 1fr); }
  .rust-grid { grid-template-columns: 1fr; }
  .advies-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; gap: 28px; }
  .cards { grid-template-columns: 1fr; }
  .review-grid { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; gap: 28px; }
  .about-grid { grid-template-columns: 1fr; gap: 28px; }
  .about-visual { order: -1; height: 260px; }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: 1fr; }

  .nav-toggle { display: flex; }
  .nav-links { position: absolute; top: 76px; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 0; background: var(--surface); border-bottom: 1px solid var(--line); box-shadow: var(--shadow); padding: 12px 24px 20px; transform: translateY(-12px); opacity: 0; pointer-events: none; transition: opacity 0.2s, transform 0.2s; }
  .nav-links.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .nav-links li { padding: 8px 0; border-bottom: 1px solid var(--line); }
  .nav-links li:last-child { border-bottom: 0; }
  .nav-cta { display: inline-block; text-align: center; margin-top: 8px; }
}
@media (max-width: 560px) {
  .advies-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .price-row { grid-template-columns: 1fr 1fr; row-gap: 6px; font-size: 0.92rem; }
  .price-head { display: none; }
  .price-size { grid-column: 1 / -1; }
  .hero-actions .btn { flex: 1; }
  .specs { grid-template-columns: 1fr; }
  .spec:nth-child(odd) { border-right: 0; }
  .tl-item { grid-template-columns: 60px 1fr; gap: 16px; }
}
