
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&display=swap");

:root{
  --bg:#f5f5f1;
  --surface:#ffffff;
  --ink:#0b0b0b;
  --muted:#6c6c67;
  --line:#d9d9d2;
  --accent:#5f78ff;
  --dark:#0c0c0c;
  --radius:28px;
  --shadow:0 30px 90px rgba(0,0,0,.10);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--bg);
  color:var(--ink);
  font-family:"Manrope",system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  line-height:1.5;
  overflow-x:hidden;
}
a{color:inherit;text-decoration:none}
img{display:block;max-width:100%}
.container{width:min(1260px,calc(100% - 42px));margin-inline:auto}

.site-header{
  position:fixed;inset:0 0 auto 0;z-index:1000;
  background:rgba(245,245,241,.86);
  backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(217,217,210,.82);
}
.nav{
  min-height:94px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
}
.brand-wrap{display:flex;align-items:center;gap:16px}
.home-icon{
  width:42px;height:42px;border:1px solid var(--line);border-radius:50%;
  background:#fff;display:grid;place-items:center;transition:.22s ease
}
.home-icon:hover{transform:translateY(-2px);box-shadow:0 12px 28px rgba(0,0,0,.08)}
.home-icon svg{width:18px;height:18px}
.logo-img{height:52px;width:auto}
.nav-links{display:flex;align-items:center;gap:30px;font-size:.94rem}
.nav-links a:not(.btn){color:#292929}
.nav-links a:not(.btn):hover{color:#000}
.menu-toggle{display:none;background:none;border:0;font-size:1.4rem}

.btn{
  display:inline-flex;align-items:center;justify-content:center;
  min-height:52px;padding:0 24px;border-radius:999px;
  border:1px solid var(--ink);font-weight:700;transition:.22s ease;cursor:pointer
}
.btn:hover{transform:translateY(-2px);box-shadow:0 14px 30px rgba(0,0,0,.10)}
.btn-primary,.btn-dark{background:#0b0b0b;color:#fff}
.btn-accent,.btn-blue{background:var(--accent);border-color:var(--accent);color:#fff}

.eyebrow{
  text-transform:uppercase;
  letter-spacing:.18em;
  font-size:.73rem;
  font-weight:700;
  color:var(--muted);
}
h1,h2,h3{
  font-family:"Manrope",system-ui,sans-serif;
  margin:0;
  line-height:.98;
}
h1{
  font-size:clamp(4.4rem,8.4vw,9.3rem);
  letter-spacing:-.072em;
  font-weight:500;
}
h2{
  font-size:clamp(2.8rem,5vw,5.9rem);
  letter-spacing:-.055em;
  font-weight:500;
}
h3{
  font-size:1.32rem;
  font-weight:600;
}
p{margin-top:0}

.hero{padding:154px 0 34px}
.hero-copy{max-width:1100px}
.hero-copy p{
  font-size:1.3rem;
  color:#44443f;
  max-width:720px;
  margin:30px 0 32px;
}
.hero-actions{display:flex;gap:12px;flex-wrap:wrap}
.hero-grid{
  display:grid;
  grid-template-columns:1.18fr .82fr;
  gap:22px;
  margin-top:52px;
}
.hero-card,.side-card{
  border-radius:34px;
  overflow:hidden;
  position:relative;
  background:#111;
}
.hero-card{min-height:690px;box-shadow:var(--shadow)}
.hero-card img,.side-card img{width:100%;height:100%;object-fit:cover}
.hero-card:after,.side-card:after{
  content:"";position:absolute;inset:0;
  background:linear-gradient(180deg,rgba(0,0,0,.02),rgba(0,0,0,.54))
}
.hero-caption{
  position:absolute;left:30px;right:30px;bottom:28px;z-index:2;color:#fff
}
.hero-caption strong{font-size:1.28rem}
.side-stack{display:grid;grid-template-rows:1fr 1fr;gap:22px}
.side-card{min-height:334px}
.side-card .label{
  position:absolute;left:18px;bottom:18px;z-index:2;
  background:rgba(255,255,255,.9);padding:13px 15px;border-radius:14px
}

.section{padding:118px 0}
.section-head{
  display:grid;
  grid-template-columns:.78fr 1fr;
  gap:58px;
  margin-bottom:48px;
}
.section-head p{
  font-size:1.1rem;
  color:var(--muted);
  max-width:740px;
}
.grid-2{display:grid;grid-template-columns:repeat(2,1fr);gap:20px}
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.grid-4{display:grid;grid-template-columns:repeat(4,1fr);gap:16px}
.card{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:32px;
  min-height:240px;
  transition:.22s ease;
}
.card:hover{transform:translateY(-3px)}
.card p{color:var(--muted);margin-bottom:0}
.card.dark,.tech-card{background:#111;color:#fff;border-color:#111}
.card.dark p,.tech-card p{color:#bdbdb8}
.card-num,.card-number{
  font-size:.76rem;
  letter-spacing:.16em;
  color:var(--accent);
  font-weight:700;
}

.full-bleed{
  width:min(1500px,calc(100% - 22px));
  margin:auto;
  border-radius:36px;
  overflow:hidden;
  position:relative;
}
.full-bleed img{width:100%;height:min(82vh,860px);object-fit:cover}
.full-overlay{
  position:absolute;
  left:32px;right:32px;bottom:30px;
  max-width:760px;
  color:#fff;
  background:rgba(0,0,0,.50);
  backdrop-filter:blur(12px);
  padding:26px;
  border-radius:18px;
}

.tech-split,.tech-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:22px;
}
.tech-image,.tech-panel{
  border-radius:32px;
  overflow:hidden;
  min-height:590px;
  background:#ddd;
}
.tech-image img,.tech-panel img{width:100%;height:100%;object-fit:cover}
.tech-copy,.tech-panel.copy{
  border-radius:32px;
  background:#111;
  color:#fff;
  padding:clamp(40px,6vw,80px);
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.tech-copy p,.tech-panel.copy p{color:#c3c3bd;font-size:1.08rem}

.image-band{display:grid;grid-template-columns:1.28fr .72fr;gap:18px}
.image-card{
  border-radius:30px;
  overflow:hidden;
  min-height:470px;
  background:#ddd;
  position:relative;
}
.image-card img{width:100%;height:100%;object-fit:cover}
.image-caption{
  position:absolute;left:20px;right:20px;bottom:20px;
  background:rgba(255,255,255,.89);
  padding:15px 17px;
  border-radius:15px;
}

.models{display:grid;grid-template-columns:repeat(8,1fr);gap:8px}
.model{
  background:#fff;border:1px solid var(--line);
  padding:22px 8px;text-align:center;border-radius:14px;font-weight:700
}

.story{display:grid;grid-template-columns:.9fr 1.1fr;gap:22px}
.story-photo{border-radius:32px;overflow:hidden;min-height:700px}
.story-photo img{width:100%;height:100%;object-fit:cover}
.story-copy{
  background:#111;color:#fff;border-radius:32px;
  padding:clamp(40px,6vw,82px)
}
.story-copy p{color:#c7c7c1;font-size:1.06rem}

.product,.product-layout{
  display:grid;
  grid-template-columns:1.14fr .86fr;
  gap:26px;
}
.product-photo,.product-main,.product-sub{
  border-radius:32px;
  overflow:hidden;
  background:#ddd;
}
.product-photo img,.product-main img{width:100%;height:760px;object-fit:cover}
.product-sub img{width:100%;height:360px;object-fit:cover}
.product-panel{
  background:#fff;
  border:1px solid var(--line);
  border-radius:32px;
  padding:36px;
  align-self:start;
  position:sticky;
  top:112px;
}
.price{
  font-size:3.45rem;
  letter-spacing:-.045em;
  margin:18px 0;
  font-weight:600
}
.tag{
  display:inline-flex;
  padding:8px 13px;
  border-radius:999px;
  background:#edf0ff;
  color:#31428a;
  font-size:.78rem;
  font-weight:700
}
.specs{border-top:1px solid var(--line);margin-top:26px}
.spec-row{
  display:grid;
  grid-template-columns:1fr 1.5fr;
  gap:16px;
  padding:14px 0;
  border-bottom:1px solid var(--line)
}
.spec-row span:first-child{color:var(--muted)}

.process{counter-reset:step}
.process .card{position:relative;padding-top:68px}
.process .card:before{
  counter-increment:step;
  content:"0" counter(step);
  position:absolute;left:30px;top:24px;
  color:var(--accent);
  font-weight:700
}

.contact-panel{
  background:var(--accent);
  color:#fff;
  border-radius:36px;
  padding:clamp(42px,6vw,82px);
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:46px;
}
.contact-panel p{color:rgba(255,255,255,.84)}
.contact-list{display:grid;gap:12px}
.contact-item{
  background:rgba(255,255,255,.12);
  padding:19px;
  border-radius:16px
}
.form{display:grid;gap:14px}
input,select,textarea{
  width:100%;
  padding:16px 17px;
  border-radius:13px;
  border:1px solid rgba(255,255,255,.34);
  background:rgba(255,255,255,.12);
  color:#fff;
  font:inherit
}
input::placeholder,textarea::placeholder{color:rgba(255,255,255,.68)}
select option{color:#111}
textarea{min-height:145px;resize:vertical}

.page-hero{padding:156px 0 58px}
.page-hero p{max-width:780px;color:var(--muted);font-size:1.2rem}
.table,.table-like{border-top:1px solid var(--line)}
.row{
  display:grid;
  grid-template-columns:1fr 2fr;
  gap:30px;
  padding:23px 0;
  border-bottom:1px solid var(--line)
}
.faq{border-top:1px solid var(--line)}
.faq details{padding:23px 0;border-bottom:1px solid var(--line)}
.faq summary{font-weight:700;cursor:pointer}
.faq p{color:var(--muted);max-width:800px;margin-top:12px}
.notice{
  background:#edf0ff;
  border:1px solid #cbd3ff;
  border-radius:18px;
  padding:21px;
  color:#2f3e7a
}
.disclaimer{font-size:.82rem;color:var(--muted);margin-top:18px}

.footer{padding:46px 0 62px;color:var(--muted);font-size:.9rem}
.footer-grid{display:flex;justify-content:space-between;gap:30px;flex-wrap:wrap}

.reveal{opacity:0;transform:translateY(28px);transition:.8s ease}
.reveal.visible{opacity:1;transform:none}

@media(max-width:980px){
  .hero-grid,.section-head,.tech-split,.tech-grid,.story,.product,.product-layout,.contact-panel,.image-band{grid-template-columns:1fr}
  .side-stack{grid-template-columns:1fr 1fr;grid-template-rows:none}
  .grid-3{grid-template-columns:1fr 1fr}
  .grid-4{grid-template-columns:1fr 1fr}
  .models{grid-template-columns:repeat(4,1fr)}
  .product-panel{position:static}
  .nav-links{
    position:absolute;top:94px;left:20px;right:20px;
    display:none;flex-direction:column;align-items:stretch;
    background:#fff;border:1px solid var(--line);
    border-radius:18px;padding:18px
  }
  .nav-links.open{display:flex}
  .menu-toggle{display:block}
}
@media(max-width:640px){
  .container{width:min(100% - 24px,1260px)}
  h1{font-size:3.95rem}
  .hero{padding-top:128px}
  .side-stack,.grid-2,.grid-3,.grid-4{grid-template-columns:1fr}
  .models{grid-template-columns:repeat(2,1fr)}
  .hero-card{min-height:540px}
  .full-bleed img{height:600px}
  .product-photo img,.product-main img{height:560px}
  .product-sub img{height:280px}
  .row,.spec-row{grid-template-columns:1fr;gap:8px}
  .logo-img{height:42px}
  .home-icon{width:38px;height:38px}
}


/* v9 webapp additions */
:root[data-theme="dark"]{
  --bg:#0b0b0b;
  --surface:#151515;
  --ink:#f4f4ef;
  --muted:#aaa9a3;
  --line:#2d2d2a;
  --accent:#7f91ff;
}
:root[data-theme="dark"] body{background:var(--bg);color:var(--ink)}
:root[data-theme="dark"] .site-header{background:rgba(11,11,11,.86)}
:root[data-theme="dark"] .card,
:root[data-theme="dark"] .product-panel,
:root[data-theme="dark"] .model,
:root[data-theme="dark"] .home-icon{background:var(--surface)}
:root[data-theme="dark"] .nav-links a:not(.btn){color:#eee}
.theme-toggle{
  width:42px;height:42px;border-radius:50%;border:1px solid var(--line);
  background:var(--surface);display:grid;place-items:center;cursor:pointer;font-size:1rem
}
.inventory-toolbar{
  display:flex;justify-content:space-between;gap:18px;align-items:center;flex-wrap:wrap;margin-bottom:26px
}
.filters{display:flex;gap:8px;flex-wrap:wrap}
.filter-btn{
  border:1px solid var(--line);background:var(--surface);color:var(--ink);
  border-radius:999px;padding:10px 14px;cursor:pointer;font:inherit;font-weight:600
}
.filter-btn.active{background:var(--ink);color:var(--bg)}
.search-input{
  min-width:260px;padding:13px 16px;border-radius:999px;border:1px solid var(--line);
  background:var(--surface);color:var(--ink);font:inherit
}
.inventory-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:22px}
.inventory-card{
  background:var(--surface);border:1px solid var(--line);border-radius:30px;overflow:hidden
}
.inventory-card img{width:100%;height:420px;object-fit:cover}
.inventory-body{padding:26px}
.inventory-top{display:flex;justify-content:space-between;gap:18px;align-items:start}
.status-pill{
  display:inline-flex;padding:7px 11px;border-radius:999px;font-size:.75rem;font-weight:700
}
.status-available{background:#e6f7ea;color:#1f6a33}
.status-reserved{background:#efefef;color:#555}
.status-sold{background:#111;color:#fff}
.inventory-price{font-size:2.2rem;font-weight:700;letter-spacing:-.04em}
.inventory-specs{display:grid;grid-template-columns:repeat(2,1fr);gap:10px;margin-top:18px}
.inventory-spec{border-top:1px solid var(--line);padding-top:10px;color:var(--muted);font-size:.92rem}
.admin-shell{padding:140px 0 80px}
.admin-grid{display:grid;grid-template-columns:260px 1fr;gap:24px}
.admin-sidebar{
  background:#111;color:#fff;border-radius:28px;padding:24px;align-self:start;position:sticky;top:116px
}
.admin-sidebar a{display:block;padding:11px 0;color:#ccc}
.admin-main{display:grid;gap:22px}
.admin-panel{background:var(--surface);border:1px solid var(--line);border-radius:28px;padding:28px}
.metric-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:14px}
.metric{background:var(--bg);border:1px solid var(--line);border-radius:18px;padding:20px}
.metric strong{font-size:2rem;display:block}
.admin-table{width:100%;border-collapse:collapse}
.admin-table th,.admin-table td{text-align:left;padding:12px;border-bottom:1px solid var(--line)}
.admin-form{display:grid;grid-template-columns:repeat(2,1fr);gap:14px}
.admin-form .full{grid-column:1/-1}
.admin-form input,.admin-form select,.admin-form textarea{
  color:var(--ink);background:var(--bg);border:1px solid var(--line)
}
.admin-actions{display:flex;gap:10px;flex-wrap:wrap}
.small-btn{
  border:1px solid var(--line);background:var(--surface);color:var(--ink);
  padding:8px 12px;border-radius:999px;cursor:pointer
}
.danger{border-color:#d44;color:#b00}
.login-card{
  width:min(480px,calc(100% - 30px));margin:170px auto 80px;
  background:var(--surface);border:1px solid var(--line);border-radius:28px;padding:34px
}
.login-card input{color:var(--ink);background:var(--bg);border:1px solid var(--line);margin:16px 0}
.case-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.case-card{background:var(--surface);border:1px solid var(--line);border-radius:26px;overflow:hidden}
.case-card img{width:100%;height:300px;object-fit:cover}
.case-card .inventory-body{padding:22px}
.issue-options{display:grid;grid-template-columns:repeat(2,1fr);gap:10px}
.issue-option{
  border:1px solid rgba(255,255,255,.3);border-radius:12px;padding:12px;
  display:flex;gap:8px;align-items:center
}
@media(max-width:900px){
  .inventory-grid,.case-grid{grid-template-columns:1fr}
  .admin-grid{grid-template-columns:1fr}
  .admin-sidebar{position:static}
  .metric-grid{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:620px){
  .admin-form,.inventory-specs,.issue-options{grid-template-columns:1fr}
  .metric-grid{grid-template-columns:1fr}
}

/* v10 beheer */
.admin-topbar{display:flex;justify-content:space-between;gap:18px;align-items:center;flex-wrap:wrap}.admin-tabs{display:flex;gap:8px;flex-wrap:wrap;margin:18px 0 0}.admin-tab{border:1px solid var(--line);background:var(--surface);color:var(--ink);border-radius:999px;padding:10px 14px;cursor:pointer;font:inherit;font-weight:700}.admin-tab.active{background:var(--ink);color:var(--bg)}.admin-view{display:none}.admin-view.active{display:block}.field{display:grid;gap:7px}.field label{font-size:.85rem;color:var(--muted);font-weight:700}.checkbox-row{display:flex;align-items:center;gap:10px}.image-drop{border:1px dashed var(--line);border-radius:18px;padding:20px;text-align:center;background:var(--bg)}.image-preview-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:10px;margin-top:12px}.image-preview{position:relative;border-radius:14px;overflow:hidden;background:#ddd;aspect-ratio:4/3}.image-preview img{width:100%;height:100%;object-fit:cover}.image-preview button{position:absolute;right:6px;top:6px;width:28px;height:28px;border:0;border-radius:50%;background:rgba(0,0,0,.7);color:white;cursor:pointer}.status-board{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}.status-column{background:var(--bg);border:1px solid var(--line);border-radius:22px;padding:16px}.status-column h4{margin:0 0 12px}.mini-bike{background:var(--surface);border:1px solid var(--line);border-radius:16px;padding:14px;margin-top:10px}.mini-bike strong{display:block}.mini-bike span{color:var(--muted);font-size:.86rem}.activity-list{display:grid;gap:10px}.activity-item{border-left:3px solid var(--accent);padding:10px 12px;background:var(--bg);border-radius:0 12px 12px 0}.backup-box{display:flex;gap:10px;flex-wrap:wrap}.json-area{width:100%;min-height:240px;color:var(--ink);background:var(--bg);border:1px solid var(--line);border-radius:16px;padding:14px;font-family:ui-monospace,monospace}.toast{position:fixed;right:22px;bottom:22px;z-index:3000;background:#111;color:#fff;padding:14px 18px;border-radius:14px;box-shadow:var(--shadow);opacity:0;transform:translateY(12px);transition:.25s ease;pointer-events:none}.toast.show{opacity:1;transform:none}.admin-badge{display:inline-flex;padding:6px 10px;border-radius:999px;background:#edf0ff;color:#30438b;font-size:.75rem;font-weight:800}.preview-frame{width:100%;height:720px;border:1px solid var(--line);border-radius:20px;background:#fff}.request-list{display:grid;gap:12px}.request-card{border:1px solid var(--line);border-radius:18px;padding:18px;background:var(--bg)}.request-card .meta{font-size:.83rem;color:var(--muted);margin-top:4px}.request-card .actions{display:flex;gap:8px;margin-top:12px;flex-wrap:wrap}.setting-grid{display:grid;grid-template-columns:1fr 1fr;gap:14px}@media(max-width:900px){.status-board,.setting-grid{grid-template-columns:1fr}.image-preview-grid{grid-template-columns:repeat(2,1fr)}}


/* v11 layout corrections */
h1,h2,h3{
  overflow-wrap:normal;
  word-break:normal;
}
h1{line-height:1.01}
h2{line-height:1.06}
h3{line-height:1.16}

.page-hero h1{
  margin-bottom:30px;
}
.page-hero p{
  margin-top:0;
  line-height:1.72;
}
.section-head h2{
  line-height:1.06;
  padding-bottom:8px;
}
.section-head p{
  padding-top:10px;
  line-height:1.72;
}
h2 + p,
h3 + p{
  margin-top:18px;
}
.inventory-top h3{
  line-height:1.14;
  margin-bottom:12px;
}
.inventory-body > p{
  margin-top:12px;
  line-height:1.6;
}
.card h3{
  margin-bottom:16px;
}
.card h3 + p{
  margin-top:0;
}
.story-copy h2{
  line-height:1.07;
}
.tech-copy h2,
.tech-panel.copy h2{
  line-height:1.07;
}
.contact-panel h2{
  line-height:1.07;
}
.contact-panel p{
  line-height:1.7;
}

.issue-fieldset{
  border:0;
  padding:0;
  margin:2px 0 2px;
  min-width:0;
}
.issue-fieldset legend{
  margin-bottom:10px;
  padding:0;
  font-size:.88rem;
  font-weight:700;
  color:rgba(255,255,255,.88);
}
.issue-options{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:10px;
}
.issue-option{
  min-height:58px;
  width:100%;
  border:1px solid rgba(255,255,255,.34);
  border-radius:13px;
  padding:12px 15px;
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap:12px;
  cursor:pointer;
  line-height:1.25;
  overflow:hidden;
}
.issue-option:hover{
  background:rgba(255,255,255,.08);
}
.issue-option input[type="checkbox"]{
  appearance:auto;
  -webkit-appearance:checkbox;
  width:18px !important;
  height:18px !important;
  min-width:18px;
  flex:0 0 18px;
  margin:0;
  padding:0;
  accent-color:#ffffff;
  background:transparent;
  border:0;
}
.issue-option span{
  display:block;
  min-width:0;
  white-space:normal;
  overflow-wrap:anywhere;
  font-weight:600;
  color:#fff;
}
.form select,
.form input,
.form textarea{
  min-width:0;
}
.form textarea{
  line-height:1.55;
}
.form .btn{
  margin-top:2px;
}

@media(max-width:620px){
  .issue-options{grid-template-columns:1fr}
  .issue-option{min-height:54px}
  .page-hero h1{margin-bottom:22px}
  .section-head p{padding-top:0}
}


/* v12 Supabase admin */
.admin-shell{padding:135px 0 80px}
.admin-header{display:flex;justify-content:space-between;align-items:center;gap:20px;flex-wrap:wrap;margin-bottom:24px}
.admin-grid{display:grid;grid-template-columns:250px 1fr;gap:24px}
.admin-sidebar{background:#111;color:#fff;border-radius:28px;padding:24px;align-self:start;position:sticky;top:115px}
.admin-sidebar button,.admin-sidebar a{display:block;width:100%;border:0;background:none;color:#ccc;text-align:left;padding:11px 0;font:inherit;cursor:pointer}
.admin-sidebar .active{color:#fff;font-weight:800}
.admin-main{display:grid;gap:22px}
.admin-panel{background:var(--surface);border:1px solid var(--line);border-radius:28px;padding:28px}
.metric-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:14px}
.metric{background:var(--bg);border:1px solid var(--line);border-radius:18px;padding:20px}
.metric strong{font-size:2rem;display:block}
.admin-table{width:100%;border-collapse:collapse}
.admin-table th,.admin-table td{text-align:left;padding:12px;border-bottom:1px solid var(--line);vertical-align:top}
.admin-actions{display:flex;gap:8px;flex-wrap:wrap}
.small-btn{border:1px solid var(--line);background:var(--surface);color:var(--ink);padding:8px 12px;border-radius:999px;cursor:pointer}
.danger{color:#b00;border-color:#d99}
.admin-form{display:grid;grid-template-columns:repeat(2,1fr);gap:14px}
.admin-form .full{grid-column:1/-1}
.admin-form input,.admin-form select,.admin-form textarea{color:var(--ink);background:var(--bg);border:1px solid var(--line)}
.admin-view{display:none}.admin-view.active{display:block}
.admin-login{width:min(480px,calc(100% - 30px));margin:160px auto 80px;background:var(--surface);border:1px solid var(--line);border-radius:28px;padding:34px}
.admin-login input{color:var(--ink);background:var(--bg);border:1px solid var(--line);margin-top:12px}
.image-manager{display:grid;grid-template-columns:repeat(3,1fr);gap:12px;margin-top:12px}
.image-manager-item{position:relative;border-radius:16px;overflow:hidden;aspect-ratio:4/3;background:#ddd}
.image-manager-item img{width:100%;height:100%;object-fit:cover}
.image-manager-item button{position:absolute;right:7px;top:7px;border:0;border-radius:50%;width:30px;height:30px;background:rgba(0,0,0,.7);color:#fff;cursor:pointer}
.request-card{background:var(--bg);border:1px solid var(--line);border-radius:18px;padding:18px;margin-top:12px}
.admin-message{padding:12px 14px;border-radius:14px;background:#edf0ff;color:#30438b;margin-bottom:14px}
@media(max-width:900px){.admin-grid{grid-template-columns:1fr}.admin-sidebar{position:static}.metric-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:620px){.admin-form,.metric-grid{grid-template-columns:1fr}.image-manager{grid-template-columns:repeat(2,1fr)}}


/* =========================================================
   V14 — nieuwe homepagehero
   ========================================================= */
.v14-hero{
  padding:138px 0 38px;
}
.v14-hero-stage{
  position:relative;
  min-height:720px;
  overflow:hidden;
  border-radius:34px;
  background:
    radial-gradient(circle at 75% 40%, rgba(255,255,255,.94), rgba(245,245,241,.3) 43%, transparent 64%),
    #f5f5f1;
  border:1px solid var(--line);
}
.v14-hero-eyebrow{
  position:absolute;
  z-index:4;
  top:42px;
  left:42px;
  text-transform:uppercase;
  letter-spacing:.18em;
  font-size:.72rem;
  font-weight:800;
  color:var(--muted);
}
.v14-hero-title{
  position:absolute;
  z-index:1;
  top:88px;
  left:35px;
  width:min(850px,70%);
  font-size:clamp(4.5rem,7.7vw,8.8rem);
  line-height:.91;
  letter-spacing:-.075em;
  font-weight:500;
  pointer-events:none;
}
.v14-hero-title span{
  display:block;
  white-space:nowrap;
}
.v14-hero-bike{
  position:absolute;
  z-index:2;
  right:-2%;
  top:18%;
  width:min(64%,900px);
  height:auto;
  object-fit:contain;
  filter:drop-shadow(0 30px 24px rgba(0,0,0,.12));
}
.v14-hero-brand{
  position:absolute;
  z-index:4;
  right:7%;
  top:58px;
  display:grid;
  justify-items:center;
  gap:4px;
}
.v14-hero-brand img{
  width:clamp(230px,25vw,390px);
  height:auto;
}
.v14-hero-brand span{
  text-transform:uppercase;
  letter-spacing:.42em;
  font-size:.75rem;
  font-weight:800;
}
.v14-hero-content{
  position:absolute;
  z-index:4;
  left:42px;
  bottom:40px;
  width:min(480px,43%);
}
.v14-hero-content p{
  font-size:1.08rem;
  line-height:1.62;
  color:#4d4d48;
  margin-bottom:14px;
}
.v14-byline{
  margin:0 0 22px;
  font-size:1rem;
}
.v14-byline strong{
  font-size:1.55rem;
  font-weight:500;
  font-style:italic;
}
.v14-hero-note{
  position:absolute;
  z-index:4;
  right:36px;
  bottom:30px;
  font-size:.8rem;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--muted);
}
.v14-detail-section{
  padding-top:55px;
}
.v14-detail-card{
  position:relative;
  min-height:560px;
  overflow:hidden;
  border-radius:34px;
  background:#05060a;
}
.v14-detail-card img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
}
.v14-detail-card:after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,rgba(0,0,0,.82) 0%,rgba(0,0,0,.48) 38%,rgba(0,0,0,.03) 72%);
}
.v14-detail-overlay{
  position:absolute;
  z-index:2;
  left:50px;
  top:50%;
  transform:translateY(-50%);
  width:min(480px,42%);
  color:#fff;
}
.v14-detail-overlay h2{
  font-size:clamp(2.8rem,4.7vw,5.4rem);
  line-height:1.01;
  margin:12px 0 22px;
}
.v14-detail-overlay p{
  color:#d0d0cc;
  font-size:1.08rem;
  line-height:1.7;
}

@media(max-width:980px){
  .v14-hero-stage{min-height:800px}
  .v14-hero-title{
    width:92%;
    font-size:clamp(4rem,10vw,7rem);
  }
  .v14-hero-bike{
    width:78%;
    right:-12%;
    top:29%;
  }
  .v14-hero-brand{
    right:5%;
    top:42px;
  }
  .v14-hero-content{
    width:54%;
  }
}
@media(max-width:700px){
  .v14-hero{padding-top:116px}
  .v14-hero-stage{
    min-height:850px;
    border-radius:24px;
  }
  .v14-hero-eyebrow{
    top:28px;
    left:24px;
    right:24px;
  }
  .v14-hero-title{
    top:74px;
    left:20px;
    width:calc(100% - 40px);
    font-size:clamp(3.4rem,15vw,5rem);
  }
  .v14-hero-title span{
    white-space:normal;
  }
  .v14-hero-brand{
    top:265px;
    left:24px;
    right:auto;
    justify-items:start;
  }
  .v14-hero-brand img{
    width:225px;
  }
  .v14-hero-brand span{
    padding-left:2px;
  }
  .v14-hero-bike{
    width:112%;
    max-width:none;
    right:-36%;
    top:34%;
  }
  .v14-hero-content{
    left:24px;
    right:24px;
    bottom:28px;
    width:auto;
    background:rgba(245,245,241,.88);
    backdrop-filter:blur(10px);
    padding:18px;
    border-radius:18px;
  }
  .v14-hero-content p{
    font-size:.98rem;
  }
  .v14-hero-note{display:none}
  .v14-detail-card{min-height:620px}
  .v14-detail-card:after{
    background:linear-gradient(180deg,rgba(0,0,0,.12),rgba(0,0,0,.88));
  }
  .v14-detail-overlay{
    left:24px;
    right:24px;
    top:auto;
    bottom:28px;
    transform:none;
    width:auto;
  }
}


/* =========================================================
   V14.1 — hero compositiecorrectie
   ========================================================= */
.v14-hero-brand{
  top:28px;
  right:8.5%;
  gap:2px;
}
.v14-hero-brand img{
  width:clamp(205px,22vw,340px);
}
.v14-hero-brand span{
  position:static;
  display:block;
  margin-top:2px;
  letter-spacing:.36em;
  font-size:.68rem;
  line-height:1;
}
.v14-hero-bike{
  top:24%;
  right:-5%;
  width:min(61%,850px);
}
.v14-hero-note{
  right:40px;
}
.v14-byline strong::after{
  content:" Haak";
}

@media(max-width:980px){
  .v14-hero-brand{
    top:26px;
    right:4%;
  }
  .v14-hero-brand img{
    width:230px;
  }
  .v14-hero-bike{
    top:32%;
    right:-15%;
    width:76%;
  }
}

@media(max-width:700px){
  .v14-hero-brand{
    top:245px;
    left:24px;
    right:auto;
  }
  .v14-hero-brand img{
    width:210px;
  }
  .v14-hero-brand span{
    margin-top:3px;
    font-size:.64rem;
  }
  .v14-hero-bike{
    top:38%;
    right:-39%;
    width:114%;
  }
}


/* =========================================================
   V14.2 — grote woordlaag met fiets ervoor
   ========================================================= */
.v142-hero{
  padding:124px 0 42px;
}
.v142-stage{
  position:relative;
  min-height:780px;
  overflow:hidden;
  border-radius:34px;
  background:#e7ea00;
  border:1px solid rgba(0,0,0,.08);
}
.v142-logo-block{
  position:absolute;
  z-index:5;
  top:28px;
  left:34px;
  display:grid;
  justify-items:start;
  gap:2px;
}
.v142-logo-block img{
  width:230px;
  height:auto;
}
.v142-logo-block span{
  padding-left:4px;
  text-transform:uppercase;
  letter-spacing:.4em;
  font-size:.65rem;
  font-weight:800;
}
.v142-wordmark{
  position:absolute;
  z-index:1;
  top:12px;
  left:50%;
  transform:translateX(-50%);
  width:100%;
  text-align:center;
  font-size:clamp(9rem,20vw,22rem);
  line-height:.8;
  letter-spacing:-.08em;
  font-weight:800;
  color:#050505;
  white-space:nowrap;
  pointer-events:none;
}
.v142-bike{
  position:absolute;
  z-index:3;
  right:7%;
  top:13%;
  width:min(58%,820px);
  height:auto;
  object-fit:contain;
  filter:drop-shadow(0 34px 28px rgba(0,0,0,.22));
}
.v142-copy{
  position:absolute;
  z-index:4;
  left:42px;
  bottom:42px;
  width:min(610px,48%);
  color:#fff;
}
.v142-copy .eyebrow{
  color:rgba(255,255,255,.86);
}
.v142-copy h1{
  margin:10px 0 18px;
  font-size:clamp(3.2rem,5vw,6.3rem);
  line-height:.94;
  letter-spacing:-.06em;
  color:#fff;
  text-shadow:0 2px 16px rgba(0,0,0,.18);
}
.v142-copy p{
  max-width:540px;
  font-size:1.06rem;
  line-height:1.65;
  color:rgba(255,255,255,.94);
  text-shadow:0 1px 10px rgba(0,0,0,.18);
}
.v142-copy .v14-byline{
  color:#fff;
}
.v142-copy .btn:not(.btn-blue){
  background:rgba(255,255,255,.92);
  border-color:#fff;
  color:#111;
}

@media(max-width:980px){
  .v142-stage{min-height:830px}
  .v142-wordmark{
    top:30px;
    font-size:clamp(8rem,22vw,15rem);
  }
  .v142-bike{
    width:76%;
    right:-6%;
    top:21%;
  }
  .v142-copy{
    width:58%;
  }
}

@media(max-width:700px){
  .v142-hero{padding-top:112px}
  .v142-stage{
    min-height:910px;
    border-radius:24px;
  }
  .v142-logo-block{
    top:22px;
    left:22px;
  }
  .v142-logo-block img{
    width:190px;
  }
  .v142-wordmark{
    top:96px;
    font-size:27vw;
    letter-spacing:-.1em;
  }
  .v142-bike{
    width:118%;
    max-width:none;
    right:-46%;
    top:24%;
  }
  .v142-copy{
    left:22px;
    right:22px;
    bottom:24px;
    width:auto;
    padding:18px;
    border-radius:18px;
    background:rgba(0,0,0,.3);
    backdrop-filter:blur(8px);
  }
  .v142-copy h1{
    font-size:clamp(3rem,15vw,4.7rem);
  }
}


/* =========================================================
   V15 — definitieve homepage op basis van Max' ontwerp
   ========================================================= */
.v15-hero{
  padding:124px 0 44px;
}
.v15-stage{
  position:relative;
  min-height:690px;
  overflow:hidden;
  border-radius:32px;
  background:#f7f7f3;
  border:1px solid #e4e4de;
}
.v15-copy{
  position:relative;
  z-index:4;
  width:54%;
  padding:48px 0 42px 42px;
}
.v15-copy .eyebrow{
  margin-bottom:10px;
  color:#292925;
}
.v15-copy h1{
  margin:0 0 18px;
  font-size:clamp(4rem,6.4vw,7.5rem);
  line-height:.94;
  letter-spacing:-.065em;
  font-weight:520;
  color:#050505;
}
.v15-copy p{
  max-width:690px;
  margin:0;
  font-size:1.13rem;
  line-height:1.58;
  color:#33332f;
}
.v15-byline{
  display:grid;
  gap:3px;
  margin:70px 0 26px;
}
.v15-byline span{
  font-size:1rem;
  text-transform:uppercase;
  letter-spacing:.06em;
  color:#5b5b55;
}
.v15-byline small{
  font-size:.92rem;
  color:#7a7a73;
}
.v15-copy .hero-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
.v15-visual{
  position:absolute;
  z-index:2;
  top:0;
  right:0;
  width:58%;
  height:100%;
}
.v15-brand{
  position:absolute;
  z-index:3;
  top:30px;
  right:50px;
  display:grid;
  justify-items:center;
  gap:0;
}
.v15-brand img{
  width:clamp(280px,29vw,455px);
  height:auto;
}
.v15-brand span{
  margin-top:-2px;
  text-transform:uppercase;
  letter-spacing:.42em;
  font-size:.68rem;
  font-weight:800;
  color:#111;
}
.v15-bike{
  position:absolute;
  z-index:4;
  right:-5%;
  top:18%;
  width:min(88%,760px);
  height:auto;
  object-fit:contain;
  filter:drop-shadow(0 28px 24px rgba(0,0,0,.14));
}
.v15-visual::after{
  content:"";
  position:absolute;
  z-index:1;
  left:14%;
  right:5%;
  bottom:30px;
  height:40px;
  border-radius:50%;
  background:radial-gradient(ellipse,rgba(0,0,0,.18),rgba(0,0,0,0) 72%);
  filter:blur(9px);
}
.v15-copy .btn-blue{
  background:#5d6cff;
  border-color:#5d6cff;
}
.v15-copy .btn-blue:hover{
  background:#4556f4;
  border-color:#4556f4;
}
.v15-copy .btn:not(.btn-blue){
  background:transparent;
  border-color:#111;
  color:#111;
}

@media(max-width:1050px){
  .v15-stage{
    min-height:760px;
  }
  .v15-copy{
    width:60%;
  }
  .v15-visual{
    width:55%;
  }
  .v15-bike{
    width:96%;
    right:-13%;
    top:23%;
  }
  .v15-brand{
    right:28px;
  }
}

@media(max-width:760px){
  .v15-hero{
    padding-top:112px;
  }
  .v15-stage{
    min-height:980px;
    border-radius:24px;
  }
  .v15-copy{
    width:auto;
    padding:28px 22px 26px;
  }
  .v15-copy h1{
    font-size:clamp(3.4rem,15vw,5.1rem);
  }
  .v15-copy p{
    font-size:1rem;
  }
  .v15-byline{
    margin:26px 0 22px;
  }
  .v15-visual{
    top:430px;
    left:0;
    right:0;
    width:100%;
    height:520px;
  }
  .v15-brand{
    top:0;
    left:22px;
    right:auto;
    justify-items:start;
  }
  .v15-brand img{
    width:220px;
  }
  .v15-brand span{
    padding-left:2px;
  }
  .v15-bike{
    width:112%;
    max-width:none;
    right:-42%;
    top:14%;
  }
  .v15-visual::after{
    left:16%;
    right:0;
    bottom:28px;
  }
}


/* =========================================================
   V15.2 — definitieve positionering homepagehero
   ========================================================= */
.v15-stage{
  min-height:720px;
}

.v15-copy{
  width:52%;
  padding:48px 0 42px 42px;
}

.v15-copy h1{
  max-width:720px;
  font-size:clamp(4rem,6vw,7rem);
}

.v15-visual{
  width:56%;
  overflow:visible;
}

.v15-brand{
  top:34px;
  right:72px;
  z-index:2;
}

.v15-brand img{
  width:clamp(300px,27vw,430px);
}

.v15-brand span{
  margin-top:4px;
  font-size:.72rem;
  letter-spacing:.5em;
}

.v15-bike{
  z-index:4;
  width:min(92%,820px);
  right:-4%;
  top:23%;
  transform:none;
  object-position:center bottom;
  filter:drop-shadow(0 30px 26px rgba(0,0,0,.14));
}

.v15-visual::after{
  left:12%;
  right:0;
  bottom:22px;
  height:50px;
}

@media(max-width:1180px){
  .v15-stage{
    min-height:760px;
  }
  .v15-copy{
    width:56%;
  }
  .v15-visual{
    width:52%;
  }
  .v15-brand{
    right:34px;
  }
  .v15-bike{
    width:104%;
    right:-16%;
    top:25%;
  }
}

@media(max-width:900px){
  .v15-stage{
    min-height:900px;
  }
  .v15-copy{
    width:62%;
  }
  .v15-copy h1{
    font-size:clamp(3.7rem,9vw,6rem);
  }
  .v15-visual{
    width:54%;
  }
  .v15-brand{
    top:38px;
    right:24px;
  }
  .v15-brand img{
    width:250px;
  }
  .v15-bike{
    width:118%;
    right:-30%;
    top:30%;
  }
}

@media(max-width:760px){
  .v15-stage{
    min-height:1010px;
  }

  .v15-copy{
    width:auto;
    padding:28px 22px 26px;
  }

  .v15-copy h1{
    max-width:none;
    font-size:clamp(3.2rem,14vw,4.8rem);
  }

  .v15-visual{
    top:470px;
    left:0;
    width:100%;
    height:500px;
  }

  .v15-brand{
    top:0;
    left:22px;
    right:auto;
  }

  .v15-brand img{
    width:215px;
  }

  .v15-bike{
    width:108%;
    right:-36%;
    top:17%;
  }
}


/* V15.3 — Sneek-label onder groot hero-logo verwijderd */
.v15-brand{
  gap:0;
}
.v15-brand span{
  display:none !important;
}


/* V17 — echte werkplaatsfoto vervangt donkere achterlichtfoto */
.v14-detail-card img{
  object-position:center 42%;
}
.v14-detail-card:after{
  background:linear-gradient(90deg,rgba(0,0,0,.74) 0%,rgba(0,0,0,.45) 38%,rgba(0,0,0,.05) 72%);
}
@media(max-width:700px){
  .v14-detail-card img{
    object-position:center 32%;
  }
}


/* v17.1 portrait workshop photo */
.v14-detail-card{
min-height:760px;
}
.v14-detail-card img{
object-fit:cover;
object-position:center top !important;
transform:scale(1.02);
}
@media(min-width:900px){
.v14-detail-card img{
object-position:center 10% !important;
}
}


/* v18 homepage hero adjustment */
.hero-logo,
.hero-brand,
.hero-wordmark,
.vanmooffix-logo{
    display:none !important;
}

.hero-bike,
.hero-image img,
.hero-right img{
    transform: translateX(80px) scale(1.02) !important;
    transform-origin:center;
}

@media (max-width:900px){
    .hero-bike,
    .hero-image img,
    .hero-right img{
        transform:none !important;
    }
}


/* =========================================================
   V18.1 — definitieve hero-correctie
   ========================================================= */

/* Het grote logo is uit de HTML verwijderd; eventuele restregels blijven verborgen. */
.v15-brand,
.v15-brand img,
.v15-brand span{
  display:none !important;
}

/* Geef de rechterkolom genoeg ruimte en houd de fiets volledig binnen het kader. */
.v15-visual{
  position:absolute !important;
  top:0 !important;
  right:0 !important;
  width:56% !important;
  height:100% !important;
  overflow:hidden !important;
}

.v15-bike{
  position:absolute !important;
  z-index:4 !important;
  width:78% !important;
  max-width:720px !important;
  height:auto !important;
  right:4% !important;
  top:21% !important;
  transform:none !important;
  object-fit:contain !important;
  object-position:center bottom !important;
  filter:drop-shadow(0 28px 24px rgba(0,0,0,.14)) !important;
}

.v15-visual::after{
  left:12% !important;
  right:8% !important;
  bottom:26px !important;
}

@media (max-width:1180px){
  .v15-visual{
    width:54% !important;
  }
  .v15-bike{
    width:82% !important;
    right:3% !important;
    top:24% !important;
  }
}

@media (max-width:900px){
  .v15-visual{
    width:52% !important;
  }
  .v15-bike{
    width:88% !important;
    right:2% !important;
    top:28% !important;
  }
}

@media (max-width:760px){
  .v15-visual{
    top:465px !important;
    left:0 !important;
    right:0 !important;
    width:100% !important;
    height:500px !important;
  }
  .v15-bike{
    width:88% !important;
    max-width:620px !important;
    right:-2% !important;
    top:14% !important;
  }
}
