
:root{
 --gold:#a97824;
 --gold-soft:#c9a15a;
 --gold-pale:#e8d8b3;
 --ink:#171715;
 --ink-2:#2b2a26;
 --cream:#f7f1e7;
 --paper:#fffdf9;
 --muted:#777168;
 --line:rgba(94,71,29,.13);
 --green:#266b47;
 --shadow-soft:0 18px 50px rgba(49,37,13,.08);
 --shadow-card:0 12px 34px rgba(49,37,13,.06);
 --radius:22px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
 margin:0;
 font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
 color:var(--ink);
 background:var(--paper);
 line-height:1.65;
 -webkit-font-smoothing:antialiased;
}
a{text-decoration:none;color:inherit}
img{max-width:100%;display:block}
button,input,select,textarea{font:inherit}
.container{width:min(1180px,calc(100% - 40px));margin-inline:auto}

.topbar{
 background:#181817;
 color:#d9d4ca;
 text-align:center;
 padding:8px 18px;
 font-size:12px;
 letter-spacing:.08em;
 text-transform:uppercase;
}
header{
 position:sticky;top:0;z-index:50;
 background:rgba(255,253,249,.92);
 backdrop-filter:blur(18px);
 border-bottom:1px solid var(--line);
}
.header-inner{min-height:86px;display:flex;align-items:center;gap:28px}
.brand{display:flex;align-items:center;gap:14px}
.brand img{
 width:58px;height:58px;border-radius:16px;object-fit:cover;object-position:center 30%;
 box-shadow:0 8px 22px rgba(69,48,11,.08)
}
.brand b{font-family:Georgia,"Times New Roman",serif;font-size:23px;color:#765117;letter-spacing:.04em}
.brand small{display:block;color:var(--muted);letter-spacing:.16em;text-transform:uppercase;font-size:10px;margin-top:1px}
nav{display:flex;gap:28px;margin-left:auto;font-weight:650;font-size:14px}
nav a{position:relative;padding:30px 0}
nav a:after{
 content:"";position:absolute;left:0;right:100%;bottom:24px;height:1px;background:var(--gold);
 transition:.25s ease
}
nav a:hover{color:#765117}
nav a:hover:after{right:0}
.header-cta{
 margin-left:6px;
 border:1px solid rgba(169,120,36,.55);
 color:#765117;
 padding:12px 18px;
 border-radius:999px;
 font-weight:750;
 font-size:14px;
 transition:.2s ease
}
.header-cta:hover{background:var(--gold);color:white;border-color:var(--gold)}
.menu-btn{display:none;background:none;border:0;font-size:27px}

.hero{
 position:relative;
 overflow:hidden;
 background:
 linear-gradient(120deg,#fffdf9 0%,#fbf4e8 48%,#ead9bc 100%);
}
.hero:before{
 content:"";position:absolute;right:-140px;top:-160px;width:540px;height:540px;
 border-radius:50%;border:1px solid rgba(169,120,36,.12)
}
.hero:after{
 content:"";position:absolute;right:140px;bottom:-280px;width:620px;height:620px;
 border-radius:50%;border:1px solid rgba(169,120,36,.08)
}
.hero-grid{
 position:relative;z-index:1;
 min-height:660px;
 display:grid;grid-template-columns:1.04fr .96fr;gap:70px;align-items:center
}
.eyebrow{
 text-transform:uppercase;
 letter-spacing:.18em;
 font-weight:800;
 font-size:11px;
 color:#8b6422;
}
.hero h1{
 font-family:Georgia,"Times New Roman",serif;
 font-size:clamp(54px,6vw,88px);
 line-height:.96;
 letter-spacing:-.035em;
 margin:18px 0 24px;
 max-width:760px
}
.hero h1 em{
 display:block;
 color:var(--gold);
 font-weight:400
}
.hero p{font-size:18px;max-width:610px;color:#4d483f}
.actions{display:flex;flex-wrap:wrap;gap:12px;margin-top:32px}
.btn{
 display:inline-flex;align-items:center;justify-content:center;
 min-height:48px;
 padding:0 20px;
 border-radius:999px;
 font-weight:800;
 font-size:14px;
 border:1px solid transparent;
 cursor:pointer;
 transition:.2s ease
}
.btn:hover{transform:translateY(-1px)}
.btn.gold{background:var(--gold);color:#fff;box-shadow:0 10px 26px rgba(169,120,36,.18)}
.btn.outline{border-color:rgba(169,120,36,.55);color:#765117;background:rgba(255,255,255,.25)}
.hero-photo{position:relative}
.hero-photo .frame{
 background:rgba(255,255,255,.64);
 border:1px solid rgba(255,255,255,.7);
 border-radius:30px;
 padding:14px;
 box-shadow:0 30px 80px rgba(66,48,15,.15);
 backdrop-filter:blur(6px)
}
.hero-photo img{width:100%;height:450px;object-fit:cover;border-radius:22px}
.hero-badge{
 position:absolute;left:-24px;bottom:34px;
 background:rgba(24,24,23,.96);
 color:#f3eee4;
 border-radius:16px;
 padding:17px 22px;
 box-shadow:var(--shadow-soft);
 font-size:13px;
 letter-spacing:.03em
}
.hero-badge b{display:block;color:var(--gold-soft);font-size:22px;line-height:1.1;margin-bottom:3px}

.trust{margin-top:-28px;position:relative;z-index:3}
.trust-grid{
 display:grid;grid-template-columns:repeat(4,1fr);
 background:rgba(255,255,255,.96);
 border:1px solid var(--line);
 border-radius:20px;
 box-shadow:var(--shadow-soft);
 overflow:hidden
}
.trust-item{padding:24px 25px}
.trust-item+.trust-item{border-left:1px solid var(--line)}
.trust-item b{display:block;margin-bottom:5px;font-family:Georgia,serif;font-size:16px}
.trust-item span{color:var(--muted);font-size:13px}

section{padding:92px 0}
.section-title{
 font-family:Georgia,"Times New Roman",serif;
 font-size:clamp(38px,4vw,58px);
 font-weight:600;
 line-height:1.05;
 letter-spacing:-.02em;
 margin:10px 0 16px
}
.lead{color:var(--muted);max-width:760px;font-size:17px}

.products{
 display:grid;
 grid-template-columns:repeat(4,1fr);
 gap:22px;
 margin-top:40px
}
.card{
 background:#fff;
 border:1px solid var(--line);
 border-radius:22px;
 overflow:hidden;
 box-shadow:var(--shadow-card);
 transition:.25s ease
}
.card:hover{
 transform:translateY(-5px);
 box-shadow:0 22px 58px rgba(49,37,13,.10);
 border-color:rgba(169,120,36,.24)
}
.card-img{
 height:260px;
 background:linear-gradient(145deg,#fffdf8,#f2e7d3);
 display:flex;align-items:center;justify-content:center;
 padding:22px;
 overflow:hidden;
 position:relative
}
.card-img:after{
 content:"";
 position:absolute;inset:auto 24px 18px 24px;height:1px;
 background:linear-gradient(90deg,transparent,rgba(169,120,36,.25),transparent)
}
.card-img img{
 height:100%;width:100%;object-fit:contain;
 filter:saturate(.92) contrast(1.02);
 transition:.3s ease
}
.card:hover .card-img img{transform:scale(1.035)}
.card-body{padding:22px}
.card h3{font-family:Georgia,serif;font-size:23px;margin:3px 0 5px;font-weight:600}
.meta{font-size:13px;color:var(--muted)}
.price{font-size:18px;color:#765117;font-weight:850;margin:15px 0 4px}
.stock{font-size:13px;color:var(--green);font-weight:700;margin-bottom:15px}

.feature{
 background:
 radial-gradient(circle at 15% 20%,rgba(169,120,36,.14),transparent 28%),
 #171816;
 color:white
}
.feature-grid{display:grid;grid-template-columns:1.04fr .96fr;gap:58px;align-items:center}
.feature h2{font-family:Georgia,serif;font-size:clamp(42px,5vw,60px);font-weight:500;line-height:1.03;margin:10px 0 18px}
.feature p{color:#c9c9c5}
.feature-list{display:grid;gap:0;margin-top:26px}
.feature-list div{padding:16px 0;border-bottom:1px solid rgba(255,255,255,.11)}
.feature-list b{display:inline-block;min-width:120px;color:var(--gold-soft)}

.quote{
 background:#fff;
 border:1px solid var(--line);
 border-radius:24px;
 padding:34px;
 box-shadow:var(--shadow-card)
}
.quote label{font-size:13px;font-weight:750;color:#49453e}
.quote input,.quote select,.quote textarea{
 width:100%;
 padding:13px 14px;
 margin:7px 0 14px;
 border:1px solid #ddd4c3;
 border-radius:12px;
 background:#fffdf9;
 outline:none;
 transition:.2s
}
.quote input:focus,.quote select:focus,.quote textarea:focus{
 border-color:#b78b41;
 box-shadow:0 0 0 3px rgba(183,139,65,.10)
}
.quote textarea{min-height:115px;resize:vertical}

footer{
 background:#111210;color:#e8e3da;
 padding:64px 0 26px
}
.footer-grid{display:grid;grid-template-columns:1.4fr 1fr 1fr;gap:50px}
footer h3{font-family:Georgia,serif;color:#fff;font-weight:500}
footer a{color:#cbc6bd}
footer a:hover{color:var(--gold-soft)}
.small{font-size:12px;color:#999c97}

.product-detail{padding:76px 0}
.product-detail-grid{display:grid;grid-template-columns:1.02fr .98fr;gap:58px;align-items:start}
.product-main-image{
 background:linear-gradient(145deg,#fffdf8,#f1e4cb);
 border:1px solid var(--line);
 border-radius:28px;
 padding:34px;
 min-height:540px;
 display:flex;align-items:center;justify-content:center;
 box-shadow:var(--shadow-card)
}
.product-main-image img{max-height:470px;object-fit:contain}
.product-detail h1{
 font-family:Georgia,serif;
 font-size:clamp(42px,4vw,58px);
 line-height:1.02;
 letter-spacing:-.025em;
 margin:10px 0 16px;
 font-weight:600
}
.specs{margin:28px 0;border-top:1px solid var(--line)}
.spec{display:flex;justify-content:space-between;padding:13px 0;border-bottom:1px solid var(--line);gap:20px}
.spec span{color:var(--muted)}
.notice{
 background:#fbf4e7;
 border:1px solid #ead7b1;
 border-radius:14px;
 padding:16px 17px;
 color:#5f4d2a;
 font-size:14px
}

@media(max-width:980px){
 nav{
  display:none;position:absolute;top:100%;left:0;right:0;
  background:#fffdf9;padding:18px 20px;flex-direction:column;
  border-bottom:1px solid var(--line)
 }
 nav.open{display:flex}
 nav a{padding:8px 0}
 nav a:after{display:none}
 .menu-btn{display:block;margin-left:auto}
 .header-cta{display:none}
 .hero-grid,.feature-grid,.product-detail-grid{grid-template-columns:1fr}
 .hero-grid{padding:60px 0 84px}
 .hero-photo img{height:380px}
 .products{grid-template-columns:repeat(2,1fr)}
 .trust-grid{grid-template-columns:1fr 1fr}
 .trust-item:nth-child(3){border-left:0;border-top:1px solid var(--line)}
 .trust-item:nth-child(4){border-top:1px solid var(--line)}
}
@media(max-width:620px){
 .container{width:calc(100% - 24px)}
 .brand b{font-size:18px}.brand small{display:none}.brand img{width:46px;height:46px}
 .header-inner{min-height:72px}
 .hero-grid{gap:40px}
 .hero h1{font-size:50px}
 .hero p{font-size:16px}
 .hero-photo img{height:310px}
 .hero-badge{left:12px;bottom:18px}
 .products,.trust-grid,.footer-grid{grid-template-columns:1fr}
 .trust-item+.trust-item{border-left:0;border-top:1px solid var(--line)}
 section{padding:64px 0}
 .product-main-image{min-height:380px}
}


.hero-badge{display:none!important}

.sell-grid{
 display:grid;
 grid-template-columns:repeat(3,1fr);
 gap:20px;
 margin-top:36px
}
.sell-card{
 background:#fff;
 border:1px solid var(--line);
 border-radius:20px;
 padding:28px;
 box-shadow:var(--shadow-card);
 transition:.2s ease
}
.sell-card:hover{
 transform:translateY(-3px);
 box-shadow:var(--shadow-soft);
 border-color:rgba(169,120,36,.24)
}
.sell-icon{
 width:46px;height:46px;
 display:grid;place-items:center;
 border-radius:50%;
 background:#f4ead5;
 color:#8b6422;
 margin-bottom:18px;
 font-size:22px
}
.sell-card h3{
 font-family:Georgia,serif;
 font-size:23px;
 font-weight:600;
 margin:0 0 10px
}
.sell-card p{
 margin:0;
 color:var(--muted)
}
.visit-panel{
 margin-top:24px;
 display:grid;
 grid-template-columns:.8fr 1.2fr;
 gap:36px;
 align-items:center;
 padding:32px 34px;
 border-radius:22px;
 background:linear-gradient(120deg,#171816,#252720);
 color:#fff
}
.visit-panel h3{
 font-size:28px;
 margin:5px 0 0;
 font-weight:500
}
.visit-panel p{color:#d1d1cc;margin:4px 0 18px}

@media(max-width:980px){
 .sell-grid{grid-template-columns:1fr}
 .visit-panel{grid-template-columns:1fr}
}


/* Local C.HAFNER product imagery */
.hero-product-showcase{
 position:relative;
 min-height:490px;
 display:flex;
 align-items:center;
 justify-content:center;
}
.showcase-card{
 position:absolute;
 background:rgba(255,255,255,.86);
 border:1px solid rgba(169,120,36,.12);
 border-radius:28px;
 box-shadow:0 28px 80px rgba(65,46,12,.14);
 padding:18px;
 backdrop-filter:blur(8px);
}
.showcase-card img{
 width:100%;
 height:100%;
 object-fit:contain;
 border-radius:18px;
 background:#fff;
}
.showcase-main{
 width:min(465px,88%);
 height:465px;
 z-index:2;
 transform:rotate(1deg);
}
.showcase-small{
 width:205px;
 height:205px;
 z-index:3;
 padding:12px;
}
.showcase-left{
 left:-22px;
 bottom:22px;
 transform:rotate(-5deg);
}
.showcase-right{
 right:-24px;
 top:35px;
 transform:rotate(5deg);
}
.feature-product-image{
 width:100%;
 max-height:560px;
 object-fit:contain;
 border-radius:24px;
 background:#fff;
 box-shadow:var(--shadow-soft);
 padding:18px;
}
.card-img{
 background:#fff;
}
.card-img img{
 mix-blend-mode:multiply;
}
.product-main-image{
 background:#fff;
}
.product-main-image img{
 mix-blend-mode:multiply;
}

@media(max-width:980px){
 .hero-product-showcase{min-height:430px}
 .showcase-main{width:min(430px,82%);height:430px}
 .showcase-small{width:170px;height:170px}
 .showcase-left{left:0}
 .showcase-right{right:0}
}
@media(max-width:620px){
 .hero-product-showcase{min-height:350px}
 .showcase-main{width:78%;height:330px}
 .showcase-small{width:125px;height:125px}
 .showcase-left{left:2px;bottom:10px}
 .showcase-right{right:2px;top:18px}
}

.topbar{padding:0}
.topbar-inner{width:min(1180px,calc(100% - 40px));margin:auto;min-height:38px;display:flex;align-items:center;justify-content:space-between;gap:18px;font-size:11px;letter-spacing:.04em;text-transform:none}
.topbar a{color:inherit}
.service-showcase{padding:76px 0 40px;background:#fffdf9}
.service-photo-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;margin-top:34px}
.service-photo-card{position:relative;min-height:360px;border-radius:22px;overflow:hidden;background:#171816;box-shadow:var(--shadow-card)}
.service-photo-card:after{content:"";position:absolute;inset:0;background:linear-gradient(to top,rgba(13,13,12,.84),rgba(13,13,12,.18) 62%,rgba(13,13,12,.02))}
.service-photo-card img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;transition:.45s ease}
.service-photo-card:hover img{transform:scale(1.035)}
.service-photo-overlay{position:absolute;z-index:2;left:0;right:0;bottom:0;padding:28px;color:#fff}
.service-photo-overlay span{display:block;color:#e1bd75;text-transform:uppercase;letter-spacing:.15em;font-size:10px;font-weight:800}
.service-photo-overlay h3{margin:7px 0;font-family:Georgia,serif;font-weight:500;font-size:30px}
.service-photo-overlay p{margin:0 0 16px;color:rgba(255,255,255,.82);font-size:14px}
.service-photo-overlay b{font-size:13px}
.sell-card-photo{padding:0;overflow:hidden}
.sell-card-photo img{width:100%;height:220px;object-fit:cover;background:#f7f1e7}
.sell-card-photo .sell-card-content{padding:25px 26px 28px}
.sell-icon{display:none}
@media(max-width:980px){.topbar-inner{justify-content:center;flex-wrap:wrap;padding:7px 0}.topbar-inner span:first-child,.topbar-inner span:last-child{display:none}.service-photo-grid{grid-template-columns:1fr}.service-photo-card{min-height:330px}}
@media(max-width:620px){.topbar-inner{width:calc(100% - 24px);gap:14px;font-size:10px}.service-showcase{padding:58px 0 28px}.service-photo-card{min-height:300px}.service-photo-overlay{padding:22px}.sell-card-photo img{height:190px}}


/* Premium visual overhaul v6 */
:root{
 --gold:#b88a3b;
 --gold-soft:#d7b56f;
 --gold-pale:#efe2c6;
 --ink:#161511;
 --ink-2:#24221d;
 --cream:#f6f1e8;
 --paper:#fdfbf7;
 --muted:#756f65;
 --line:rgba(92,70,32,.13);
 --shadow-soft:0 24px 70px rgba(27,22,12,.11);
 --shadow-card:0 15px 45px rgba(27,22,12,.07);
}
body{background:var(--paper);color:var(--ink);letter-spacing:-.005em}
header{background:rgba(253,251,247,.96);box-shadow:0 1px 0 rgba(80,60,25,.08)}
.header-inner{min-height:92px}
.brand img{box-shadow:none;border-radius:12px}
.brand b{font-size:24px;letter-spacing:.06em;color:#6f4d14}
nav{gap:30px;font-weight:600}
.header-cta{border-radius:4px;background:var(--gold);color:white;border-color:var(--gold);padding:13px 22px}
.topbar{background:#151511;color:#eee7dc}
.topbar-inner{min-height:34px;color:#eee7dc}

.hero{background:#131310;color:#fff;border-bottom:1px solid rgba(184,138,59,.35)}
.hero:before,.hero:after{display:none}
.hero-grid{min-height:650px;gap:74px}
.hero .eyebrow{color:var(--gold-soft)}
.hero h1{font-size:clamp(54px,6vw,84px);font-weight:500;max-width:760px;color:#fff}
.hero h1 em{font-size:.58em;line-height:1.08;color:var(--gold-soft);margin-top:12px;letter-spacing:-.02em}
.hero p{color:#d6d1c8;font-size:17px;max-width:620px}
.hero .btn.outline{border-color:rgba(215,181,111,.65);color:#f4e5c8;background:transparent}
.hero .btn.gold{background:linear-gradient(135deg,#c79a4d,#a87524);box-shadow:none}
.hero-product-showcase{min-height:500px}
.showcase-card{background:#fbfaf7;border:1px solid rgba(215,181,111,.28);box-shadow:0 30px 90px rgba(0,0,0,.32);border-radius:10px;padding:10px;backdrop-filter:none}
.showcase-card img{border-radius:5px;background:#fff;mix-blend-mode:multiply}
.showcase-main{transform:rotate(1.5deg)}
.showcase-left{transform:rotate(-5deg)}
.showcase-right{transform:rotate(5deg)}

.trust{margin-top:0;background:#fff;border-bottom:1px solid var(--line)}
.trust-grid{box-shadow:none;border:0;border-radius:0;background:#fff}
.trust-item{padding:26px 28px}
.trust-item b{font-family:inherit;font-size:14px;letter-spacing:.01em}
.trust-item span{font-size:12px}

.service-showcase{padding:86px 0 58px}
.service-showcase .section-title{max-width:780px}
.service-photo-grid{gap:14px;margin-top:38px}
.service-photo-card{min-height:430px;border-radius:8px;box-shadow:0 20px 55px rgba(28,22,12,.10)}
.service-photo-card:after{background:linear-gradient(to top,rgba(12,11,9,.88) 0%,rgba(12,11,9,.45) 48%,rgba(12,11,9,.06) 75%)}
.service-photo-card img{filter:saturate(.88) contrast(1.04)}
.service-photo-card:first-child img{object-fit:contain;background:radial-gradient(circle at 50% 45%,#f4efe5 0%,#e9e1d3 55%,#d9cfbf 100%);padding:26px}
.service-photo-overlay{padding:34px}
.service-photo-overlay h3{font-size:34px;line-height:1.05;margin:9px 0 10px}
.service-photo-overlay p{font-size:14px;max-width:320px}
.service-photo-overlay b{font-size:12px;letter-spacing:.02em}

.section-title{font-size:clamp(38px,4.3vw,60px);font-weight:500;letter-spacing:-.035em}
#producten{padding-top:88px;background:#f9f6f0}
.products{grid-template-columns:repeat(4,1fr);gap:16px}
.card{border-radius:8px;box-shadow:none;border:1px solid rgba(102,77,33,.12);background:white}
.card:hover{transform:translateY(-3px);box-shadow:0 18px 45px rgba(50,39,16,.09)}
.card-img{height:245px;background:#fbfaf7;padding:18px}
.card-body{padding:20px 20px 22px}
.card h3{font-size:22px}
.card .btn{border-radius:4px;min-height:43px;padding:0 16px}

.feature{background:#151511;padding:96px 0}
.feature h2{font-size:clamp(42px,5vw,64px);font-weight:500;max-width:650px}
.feature-product-image{border-radius:8px;box-shadow:0 26px 70px rgba(0,0,0,.32);padding:24px}
.feature-list div{font-size:17px}
.feature-list b{font-family:Georgia,serif;font-size:20px;min-width:155px;color:var(--gold-soft)}

#goud-verkopen{background:#f9f6f0}
.sell-grid{gap:16px}
.sell-card{border-radius:8px;box-shadow:none;border:1px solid rgba(102,77,33,.12)}
.sell-card-photo img{height:285px;filter:saturate(.9) contrast(1.03)}
.sell-card-photo:first-child img{object-fit:contain;background:#fbfaf7;padding:24px}
.sell-card-content{background:#fff}
.sell-card h3{font-size:28px;font-weight:500;line-height:1.12}
.visit-panel{grid-template-columns:1fr 1fr 1.15fr;border-radius:8px;background:#151511;padding:34px 36px;margin-top:24px;border:1px solid rgba(215,181,111,.22)}
.visit-panel h3{font-size:21px;color:#fff}
.visit-panel .eyebrow{color:var(--gold-soft)}
.visit-panel p{font-size:14px}
.visit-action{border-left:1px solid rgba(255,255,255,.13);padding-left:30px}

#contact{background:white}
.quote{border-radius:8px;box-shadow:none;border:1px solid rgba(102,77,33,.16);padding:36px}
.quote input,.quote select,.quote textarea{border-radius:4px;background:#fff}

.premium-footer{background:#11110f;color:#d9d4ca;padding:68px 0 24px;margin-top:0}
.premium-footer-grid{grid-template-columns:1.25fr .75fr 1.1fr .85fr;gap:52px}
.premium-footer h3{font-family:Georgia,serif;color:#fff;font-size:18px;font-weight:500;margin:0 0 13px}
.premium-footer p{font-size:13px;color:#aaa59b;margin:0 0 12px;line-height:1.65}
.premium-footer a{font-size:13px;line-height:2;color:#d4cec2}
.premium-footer a:hover{color:var(--gold-soft)}
.footer-company,.footer-kvk{margin-top:18px;font-size:12px;color:var(--gold-soft)}
.footer-subhead{margin-top:22px!important}
.footer-bottom{border-top:1px solid rgba(255,255,255,.11);margin-top:42px;padding-top:20px;font-size:11px;color:#88857e}

@media(max-width:980px){
 .premium-footer-grid{grid-template-columns:1fr 1fr}
 .visit-panel{grid-template-columns:1fr 1fr}
 .visit-action{grid-column:1/-1;border-left:0;border-top:1px solid rgba(255,255,255,.13);padding:24px 0 0}
 .products{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:620px){
 .header-inner{min-height:72px}
 .hero-grid{padding:58px 0 72px}
 .hero h1{font-size:48px}
 .hero h1 em{font-size:.55em}
 .service-photo-card{min-height:360px}
 .products{grid-template-columns:1fr}
 .premium-footer-grid{grid-template-columns:1fr}
 .visit-panel{grid-template-columns:1fr}
 .visit-action{grid-column:auto}
}

:root{--lux-black:#11110f;--lux-charcoal:#1b1a17;--lux-gold:#b6893f;--lux-gold-soft:#d7b876;--lux-ivory:#f7f3ec}
body{background:radial-gradient(circle at 15% 0%,rgba(182,137,63,.035),transparent 26%),var(--paper)}
header{background:rgba(255,253,249,.965);box-shadow:0 1px 0 rgba(94,71,29,.08)}
.header-inner{min-height:92px}
.brand img{box-shadow:none;border:1px solid rgba(169,120,36,.08)}
.brand b{font-size:24px;letter-spacing:.06em}
nav{gap:31px;font-weight:600}
nav a{font-size:13px;letter-spacing:.01em}
.hero{background:radial-gradient(circle at 82% 20%,rgba(199,164,99,.14),transparent 30%),linear-gradient(120deg,#fcfaf6 0%,#f3ede4 44%,#dfd0b5 100%)}
.hero-grid{min-height:720px;gap:80px}
.hero h1{max-width:690px;font-size:clamp(58px,6.4vw,96px);line-height:.93}
.hero h1 em{color:#9a6c27}
.hero p{max-width:570px;font-size:17px;line-height:1.8}
.hero-product-showcase{min-height:540px}
.showcase-card{border-radius:18px;border:1px solid rgba(122,88,28,.11);box-shadow:0 34px 90px rgba(38,29,12,.13);background:rgba(255,255,255,.91)}
.showcase-main{width:min(485px,88%);height:485px}
.showcase-small{border-radius:14px}
.btn{border-radius:4px;min-height:50px;padding:0 22px;letter-spacing:.035em;text-transform:uppercase;font-size:12px}
.btn.gold{background:linear-gradient(90deg,#a8782c,#c29a52);box-shadow:none}
.btn.outline{background:rgba(255,255,255,.35);border-color:rgba(132,94,32,.4)}
.trust{margin-top:-22px}
.trust-grid{border-radius:8px;box-shadow:0 18px 50px rgba(49,37,13,.065)}
.trust-item{padding:27px 26px}
.trust-item b{font-family:inherit;text-transform:uppercase;letter-spacing:.08em;font-size:11px}
.trust-item span{font-size:13px}
.section-title{letter-spacing:-.025em;font-weight:500}
.lead{line-height:1.85}
.service-showcase{padding-top:98px}
.service-photo-grid{gap:22px}
.service-photo-card{border-radius:8px;min-height:390px;box-shadow:0 18px 40px rgba(43,34,18,.09)}
.service-photo-card:after{background:linear-gradient(to top,rgba(11,10,9,.88) 0%,rgba(11,10,9,.22) 63%,rgba(11,10,9,.02) 100%)}
.service-photo-overlay{padding:30px 30px 32px}
.service-photo-overlay h3{font-size:31px;line-height:1.05}
.service-photo-overlay p{max-width:320px;line-height:1.65}
.products{gap:16px}
.card{border-radius:8px;box-shadow:none;border-color:rgba(95,72,31,.11)}
.card:hover{transform:translateY(-3px);box-shadow:0 16px 44px rgba(48,36,13,.08)}
.card-img{height:280px;padding:26px;background:#fff}
.card-body{padding:21px 22px 24px}
.card h3{font-size:22px;letter-spacing:-.015em}
.price{font-size:16px;letter-spacing:.02em}
.stock{opacity:.8}
.feature{background:radial-gradient(circle at 18% 18%,rgba(182,137,63,.12),transparent 26%),#121310}
.feature h2{letter-spacing:-.025em}
.feature-product-image{border-radius:8px;box-shadow:0 22px 60px rgba(0,0,0,.24)}
.sell-card{border-radius:8px}
.sell-card-photo img{height:250px}
.visit-panel{border-radius:8px;background:radial-gradient(circle at 85% 20%,rgba(190,145,70,.12),transparent 32%),linear-gradient(120deg,#141411,#24231f);padding:38px 40px}
.visit-panel h3{font-family:Georgia,serif;font-size:31px}
.quote{border-radius:8px;box-shadow:none;padding:40px}
.quote input,.quote select,.quote textarea{border-radius:4px;background:#fff}
.quote label{text-transform:uppercase;letter-spacing:.08em;font-size:10px}
.premium-editorial{padding:110px 0;background:linear-gradient(90deg,#11110f 0%,#181713 53%,#211f19 100%);color:#fff}
.premium-editorial-grid{display:grid;grid-template-columns:1.05fr .95fr;gap:70px;align-items:center}
.premium-editorial .section-title{color:#fff;max-width:620px}
.premium-editorial .lead{color:#c9c5bd;max-width:620px}
.premium-points{display:grid;grid-template-columns:repeat(3,1fr);gap:0;margin-top:42px;border-top:1px solid rgba(255,255,255,.12)}
.premium-points div{padding:24px 18px 0 0}
.premium-points strong{display:block;color:var(--lux-gold-soft);font:500 28px Georgia,serif;margin-bottom:4px}
.premium-points span{color:#ddd8cf;font-size:13px}
.premium-editorial-visual{min-height:380px;border:1px solid rgba(214,184,118,.18);background:linear-gradient(rgba(11,11,9,.72),rgba(11,11,9,.72)),url("../images/products/100g.jpg") center/cover no-repeat;display:flex;align-items:flex-end;padding:42px}
.premium-quote{font:400 30px/1.25 Georgia,serif;color:#f5efe4;max-width:470px}
footer{padding-top:72px;background:linear-gradient(180deg,#11120f,#0d0e0c)}
.footer-grid{gap:60px}
footer h3{font-size:22px;letter-spacing:.01em}
footer p,footer a,footer span{line-height:1.85}
.footer-bottom{opacity:.72;letter-spacing:.04em}
.reveal-ready{opacity:0;transform:translateY(18px);transition:opacity .7s ease,transform .7s ease}
.reveal-in{opacity:1;transform:none}
@media(max-width:980px){.premium-editorial-grid{grid-template-columns:1fr}.premium-editorial-visual{min-height:320px}}
@media(max-width:620px){.header-inner{min-height:76px}.hero-grid{min-height:auto}.hero h1{font-size:52px}.showcase-main{height:340px}.premium-points{grid-template-columns:1fr}.premium-editorial{padding:76px 0}.premium-editorial-visual{min-height:270px;padding:26px}.premium-quote{font-size:24px}.quote{padding:26px}}


/* Aurax Flow Premium v8 */
body{background:#fbfaf7}
.topbar{
  background:linear-gradient(90deg,#11110f,#1b1915,#11110f);
  border-bottom:1px solid rgba(210,173,100,.15)
}
.header-inner{min-height:96px}
header{border-bottom:1px solid rgba(84,63,25,.08)}
.brand b{color:#6e4c16}
.header-cta{
  border-radius:3px;
  background:#b48943;
  color:#fff;
  border-color:#b48943;
  letter-spacing:.04em;
  text-transform:uppercase;
  font-size:11px
}
.header-cta:hover{background:#97712f}

.hero{
  background:
    linear-gradient(90deg,rgba(16,16,14,.94),rgba(18,18,16,.80) 47%,rgba(18,18,16,.18)),
    linear-gradient(120deg,#151512,#2b251d);
  color:#fff
}
.hero:before,.hero:after{display:none}
.hero-grid{min-height:760px}
.hero .eyebrow{color:#d4b26f}
.hero h1{color:#fff}
.hero h1 em{color:#d6b36c;font-size:.72em;line-height:1.08;margin-top:14px}
.hero p{color:#d6d2c9}
.hero .btn.outline{color:#fff;border-color:rgba(215,184,118,.48);background:transparent}
.hero .btn.outline:hover{background:rgba(255,255,255,.04)}
.hero-microtrust{display:flex;gap:22px;flex-wrap:wrap;margin-top:28px;color:#c9c4ba;font-size:12px}
.hero-microtrust span{display:flex;align-items:center;gap:8px}
.hero-microtrust span:before{content:"";width:5px;height:5px;border-radius:50%;background:#c9a15a}
.showcase-card{background:rgba(255,255,255,.96);box-shadow:0 38px 100px rgba(0,0,0,.28)}

.trust{margin-top:0}
.trust-grid{border-radius:0;border-left:0;border-right:0}
.trust-item{padding:30px 28px}
.trust-item b{color:#77531c}
.trust-item span{line-height:1.55}

.service-showcase{background:#fbfaf7;padding-top:110px}
.service-photo-card{min-height:420px;border-radius:2px}
.service-photo-overlay{padding:34px}
.service-photo-overlay span{color:#d5b36f}
.service-photo-overlay h3{font-size:34px}
.service-photo-overlay p{font-size:15px}
.service-photo-card:hover img{transform:scale(1.025)}

#producten{background:#fff}
.card{border-radius:2px}
.card-img{height:300px}
.card-body{padding:24px}
.card .btn{width:100%}

.process-section{
  padding:100px 0;
  background:#f4efe7;
  border-top:1px solid rgba(117,88,33,.10);
  border-bottom:1px solid rgba(117,88,33,.10)
}
.process-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:0;
  margin-top:46px;
  border-top:1px solid rgba(117,88,33,.18);
  border-bottom:1px solid rgba(117,88,33,.18)
}
.process-grid article{padding:30px 28px 34px;border-right:1px solid rgba(117,88,33,.15)}
.process-grid article:last-child{border-right:0}
.process-grid span{display:block;color:#b1833b;font:500 30px Georgia,serif;margin-bottom:20px}
.process-grid h3{font:500 22px Georgia,serif;margin:0 0 10px}
.process-grid p{margin:0;color:#777168;font-size:14px;line-height:1.75}

#goud-verkopen{background:#fff}
.sell-grid{gap:18px}
.sell-card{border-radius:2px}
.sell-card-photo img{height:270px}
.sell-card-content{min-height:245px}

.location-section{
  padding:110px 0;
  background:#f8f5ef
}
.location-grid{
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:64px;
  align-items:stretch
}
.location-copy{padding:20px 0}
.location-data{
  display:grid;
  grid-template-columns:1fr;
  gap:0;
  margin:34px 0;
  border-top:1px solid rgba(117,88,33,.16)
}
.location-data div{padding:17px 0;border-bottom:1px solid rgba(117,88,33,.16)}
.location-data small{display:block;text-transform:uppercase;letter-spacing:.12em;color:#9d7a3c;font-size:9px;font-weight:800;margin-bottom:5px}
.location-data strong{display:block;font:500 18px Georgia,serif}
.location-data span{color:#706a61;font-size:14px}
.map-frame{min-height:520px;border:1px solid rgba(117,88,33,.14);background:#ddd}
.map-frame iframe{width:100%;height:100%;min-height:520px;border:0;filter:grayscale(.18) sepia(.05)}

.premium-editorial{padding:120px 0}
.premium-editorial-visual{min-height:430px}
.premium-quote{font-size:34px}

#contact{background:#fff}
.quote{border:1px solid rgba(117,88,33,.13);background:#fff}

.floating-actions{
  position:fixed;
  right:22px;
  bottom:22px;
  z-index:60;
  display:flex;
  flex-direction:column;
  gap:8px
}
.floating-actions a{
  min-width:118px;
  text-align:center;
  padding:11px 16px;
  border-radius:2px;
  font-size:12px;
  font-weight:800;
  letter-spacing:.03em;
  box-shadow:0 12px 30px rgba(0,0,0,.14)
}
.floating-call{background:#11110f;color:#fff}
.floating-whatsapp{background:#b68a42;color:#fff}

footer{border-top:1px solid rgba(202,162,86,.28)}
footer .footer-grid{grid-template-columns:1.35fr .9fr .9fr}
footer .footer-title,footer h3{color:#d7b876}
.footer-bottom{border-top-color:rgba(255,255,255,.08)}

@media(max-width:980px){
  .hero-grid{min-height:auto;padding:76px 0 90px}
  .process-grid{grid-template-columns:1fr 1fr}
  .process-grid article:nth-child(2){border-right:0}
  .process-grid article:nth-child(-n+2){border-bottom:1px solid rgba(117,88,33,.15)}
  .location-grid{grid-template-columns:1fr}
  .map-frame,.map-frame iframe{min-height:380px}
}
@media(max-width:620px){
  .hero h1{font-size:48px}
  .hero h1 em{font-size:.68em}
  .hero-microtrust{gap:10px 16px}
  .service-photo-card{min-height:350px}
  .process-grid{grid-template-columns:1fr}
  .process-grid article{border-right:0;border-bottom:1px solid rgba(117,88,33,.15)}
  .process-grid article:last-child{border-bottom:0}
  .floating-actions{right:12px;bottom:12px;flex-direction:row}
  .floating-actions a{min-width:auto;padding:10px 12px}
  footer .footer-grid{grid-template-columns:1fr}
}

header.is-scrolled{box-shadow:0 14px 35px rgba(45,34,13,.08)}
