/* =======================================================================
   Erusne – original design CSS (extracted verbatim from the source HTML).
   Scope note: these rules are global, exactly as the standalone page used
   them, so the widgets render pixel-identically. Class names must not change.
   ======================================================================= */

:root{
  --olive:#4a4a14;
  --olive-2:#54541a;
  --text:#1a1a1a;
  --muted:#5b5b5b;
  --grey-bg:#e4e4e4;
  --yellow:#f3eda0;
  --footer-bg:#e9e9e9;
  --max:100%;
  --pad:50px;
}

/* Reset limited to Erusne widgets so we don't fight the WP theme globally. */
.erusne-widget *{box-sizing:border-box;margin:0;padding:0;}
.erusne-widget a{color:inherit;text-decoration:none;}
.erusne-widget img{display:block;max-width:100%;}
.erusne-widget{
  font-family:'Assistant',-apple-system,BlinkMacSystemFont,'Segoe UI',Helvetica,Arial,sans-serif;
  color:var(--text);
  line-height:1.5;
  -webkit-font-smoothing:antialiased;
}

/* ---------- Header ---------- */
.site-header{
  position:fixed;top:0;left:0;right:0;z-index:50;
  padding:22px 50px;
  display:flex;align-items:center;
  transition:background-color .3s ease, box-shadow .3s ease, padding .3s ease;
}
.brand{
  font-family:'Playfair Display',serif;
  font-size:30px;
  font-weight:600;
  letter-spacing:1px;
  color:#fff;
  transition:color .3s ease;
}
.nav{
  display:flex;gap:24px;align-items:center;
  margin-left:34px;
}
.nav a{
  color:#fff;font-size:15px;font-weight:400;opacity:.95;
  transition:color .3s ease;
}
.nav a:hover{opacity:.7;}
.header-icons{
  margin-left:auto;display:flex;gap:26px;align-items:center;
}
.icon-btn{display:inline-flex;}
.header-icons svg{stroke:#fff;width:20px;height:20px;transition:stroke .3s ease;}

/* Hamburger (hidden on desktop) */
.hamburger{
  display:none;
  background:none;border:none;padding:0;cursor:pointer;
}
.hamburger svg{stroke:#fff;width:24px;height:24px;transition:stroke .3s ease;}

/* Mobile slide-in menu */
.mobile-overlay{
  position:fixed;inset:0;z-index:60;
  background:rgba(0,0,0,.4);
  opacity:0;transition:opacity .3s ease;
}
.mobile-overlay.open{opacity:1;}
.mobile-menu{
  position:fixed;top:0;left:0;bottom:0;z-index:70;
  width:78%;max-width:320px;
  background:#fff;
  padding:78px 28px 28px;
  transform:translateX(-100%);
  transition:transform .3s ease;
  box-shadow:2px 0 18px rgba(0,0,0,.12);
}
.mobile-menu.open{transform:translateX(0);}
.mobile-close{
  position:absolute;top:22px;right:22px;
  background:none;border:none;padding:0;cursor:pointer;
}
.mobile-close svg{stroke:#1a1a1a;width:24px;height:24px;}
.mobile-nav{display:flex;flex-direction:column;}
.mobile-nav a{
  font-size:18px;color:#1a1a1a;padding:16px 0;
  border-bottom:1px solid #eee;
}
.mobile-nav a:hover{opacity:.6;}
body.menu-open{overflow:hidden;}

/* Scrolled state: white background, dark text */
.site-header.scrolled{
  background:#ffffff;
  box-shadow:0 1px 12px rgba(0,0,0,.08);
  padding:16px 50px;
}
.site-header.scrolled .brand{color:#1a1a1a;}
.site-header.scrolled .nav a{color:#1a1a1a;}
.site-header.scrolled .header-icons svg{stroke:#1a1a1a;}
.site-header.scrolled .hamburger svg{stroke:#1a1a1a;}

/* ---------- Hero ---------- */
.hero{
  position:relative;
  height:625px;
  overflow:hidden;
  display:flex;flex-direction:column;justify-content:center;align-items:center;
}
.marquee{
  position:absolute;
  top:35%;left:0;right:0;
  transform:translateY(-50%);
  overflow:hidden;white-space:nowrap;
  pointer-events:none;
}
.marquee-track{
  display:inline-block;white-space:nowrap;
  animation:marquee 22s linear infinite;
}
.marquee-track span{
  font-family:'Assistant',sans-serif;
  font-size:58px;font-weight:700;color:#fff;letter-spacing:-1px;
  padding:0 .35em;
}
@keyframes marquee{
  from{transform:translateX(0);}
  to{transform:translateX(-50%);}
}
.hero-cta{
  position:relative;
  margin-top:120px;
  background:var(--olive);
  color:#fff;
  padding:13px 26px;
  border-radius:30px;
  font-size:15px;
  font-weight:400;
  z-index:5;
}
.hero-cta:hover{background:var(--olive-2);}

/* ---------- Intro band ---------- */
.intro-section{
  background:var(--grey-bg);
  padding:36px 0 36px;
}
.intro-wrap{
  max-width:var(--max);margin:0 auto;padding:0 var(--pad);
  display:grid;grid-template-columns:1fr 1fr;gap:0;align-items:stretch;
}
.intro-img img{width:100%;height:100%;object-fit:cover;display:block;}
.intro-text{
  background:#dcdcdc;
  padding:48px 56px;
  display:flex;flex-direction:column;justify-content:center;
}
.intro-text h2{
  font-family:'Assistant',sans-serif;
  font-size:30px;font-weight:500;line-height:1.25;margin-bottom:18px;letter-spacing:-.3px;
}
.intro-text p{
  font-size:15px;color:#3a3a3a;line-height:1.6;max-width:430px;
}

/* ---------- Product grid ---------- */
.products{
  background:var(--grey-bg);
  padding:0 0 44px;
}
.products-wrap{
  max-width:var(--max);margin:0 auto;padding:0 var(--pad);
  display:grid;grid-template-columns:repeat(4,1fr);gap:18px;
}
.product img{width:100%;aspect-ratio:312/525;object-fit:cover;display:block;}
.product .title{font-size:15px;margin-top:12px;color:#1f1f1f;}
.product .price{font-size:15px;margin-top:4px;color:#1f1f1f;}

/* ---------- Basisstukken banner ---------- */
.basis{
  position:relative;
  min-height:595px;
  display:flex;align-items:center;
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}
.basis::before{
  content:"";position:absolute;inset:0;
  background:linear-gradient(90deg, rgba(40,30,20,.55) 0%, rgba(40,30,20,.30) 30%, rgba(40,30,20,0) 55%);
}
.basis-inner{
  position:relative;z-index:2;
  max-width:var(--max);margin:0 auto;padding:0 50px;width:100%;
}
.basis h2{
  font-family:'Assistant',sans-serif;
  color:#fff;font-size:52px;font-weight:700;line-height:1.05;margin-bottom:14px;letter-spacing:-1px;
  text-shadow:0 1px 14px rgba(0,0,0,.25);
}
.basis p{
  color:#fff;font-size:16px;line-height:1.5;max-width:360px;margin-bottom:24px;
  text-shadow:0 1px 10px rgba(0,0,0,.25);
}
.basis .btn{
  display:inline-block;background:var(--olive);color:#fff;
  padding:12px 26px;border-radius:30px;font-size:15px;
}
.basis .btn:hover{background:var(--olive-2);}

/* ---------- Quote ---------- */
.quote{
  background:var(--grey-bg);
  padding:78px 20px 88px;
  text-align:center;
}
.quote .stars{font-size:20px;letter-spacing:4px;color:#1a1a1a;margin-bottom:30px;}
.quote p{
  font-size:30px;font-weight:400;line-height:1.35;max-width:620px;margin:0 auto 24px;color:#1a1a1a;letter-spacing:-.3px;
}
.quote .link{font-size:15px;color:#3a3a13;}
.quote .link:hover{text-decoration:underline;}

/* ---------- Vision ---------- */
.vision{
  display:grid;grid-template-columns:1fr 1fr;
  min-height:560px;
}
.vision-text{
  background:var(--yellow);
  display:flex;align-items:flex-end;
  padding:0 60px 60px;
}
.vision-text p{
  font-size:27px;font-weight:400;line-height:1.3;color:#1a1a1a;letter-spacing:-.3px;
}
.vision-img{overflow:hidden;}
.vision-img img{width:100%;height:100%;object-fit:cover;display:block;}

/* ---------- Footer ---------- */
.footer{
  background:var(--footer-bg);
  padding:64px 0 0;
}
.footer-wrap{
  max-width:var(--max);margin:0 auto;padding:0 50px;
  display:grid;grid-template-columns:1fr 1fr 1fr;gap:40px;
}
.footer h3{font-size:21px;font-weight:700;margin-bottom:24px;color:#1a1a1a;}
.footer ul{list-style:none;}
.footer ul li{margin-bottom:14px;}
.footer ul li a{font-size:15px;color:#2a2a2a;}
.footer ul li a:hover{text-decoration:underline;}
.footer .company p{font-size:15px;color:#2a2a2a;margin-bottom:14px;line-height:1.4;}
.footer-bottom{
  max-width:var(--max);margin:48px auto 0;padding:18px 50px;
  border-top:1px solid #cccccc;
  font-size:13px;color:#555;
}

/* ---------- Responsive ---------- */
@media (max-width:900px){
  .site-header{
    padding:14px 18px;
    background:#fff;
    box-shadow:0 1px 10px rgba(0,0,0,.07);
  }
  .hamburger{display:inline-flex;}
  .hamburger svg{stroke:#1a1a1a;}
  .nav{display:none;}
  .brand{
    position:absolute;left:50%;transform:translateX(-50%);
    color:#1a1a1a;font-size:24px;margin:0;
  }
  .header-icons{margin-left:auto;gap:20px;}
  .header-icons svg{stroke:#1a1a1a;}
  .site-header.scrolled{padding:14px 18px;}

  .intro-wrap{grid-template-columns:1fr;padding:0 20px;}
  .intro-text{padding:32px 28px;}
  .products-wrap{grid-template-columns:repeat(2,1fr);padding:0 20px;}
  .basis h2{font-size:38px;}
  .basis-inner{padding:0 24px;}
  .quote p{font-size:24px;}
  .vision{grid-template-columns:1fr;}
  .vision-text{padding:40px 28px;order:2;}
  .vision-img{order:1;}
  .footer-wrap{grid-template-columns:1fr;padding:0 24px;}
  .footer-bottom{padding:18px 24px;}
}
@media (max-width:520px){
  .header-icons{gap:16px;}
  .intro-wrap{padding:0 14px;}
  .products-wrap{grid-template-columns:1fr 1fr;gap:12px;padding:0 14px;}
}

/* ---------- Elementor editor helpers ----------
   The fixed header is hard to edit inside the Elementor canvas, so in the
   editor only we make it static. Front-end keeps position:fixed. */
.elementor-editor-active .site-header{position:static;}
