* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
    --dark: #12211D;
    --teal: #22B24A;
    --white: #FFFFFF;
    --light-bg: #FAFAF8;
    --gray-bg: #F5F5F3;
    --text: #12211D;
    --text-muted: rgba(18,33,29,0.68);
    --border: rgba(18,33,29,0.14);
    --ink: #12211D;
    --ink-70: rgba(18,33,29,0.68);
    --ink-45: rgba(18,33,29,0.45);
    --paper: #FFFFFF;
    --paper-2: #FAFAF8;
    --pine: #22B24A;
    --pine-light: #3FCB63;
    --brass: #A67C43;
    --mist: #F5F5F3;
    --line: rgba(18,33,29,0.14);
    --line-on-dark: rgba(245,243,238,0.22);
  }
body { font-family: "Work Sans", sans-serif; color: var(--text); font-size: 15px; background: white; }
a { text-decoration: none; color: inherit; }
/* TOP BAR */.topbar {
    background: #f2f2f2;
    padding: 8px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #333;
    border-bottom: 1px solid #e0e0e0;
  }
.topbar-right { display: flex; align-items: center; gap: 20px; }
.topbar-right a { font-weight: 600; color: #333; }
.topbar-right a:hover { color: var(--teal); }
.topbar-divider { color: #bbb; }
/* MAIN NAV */.main-nav {
    background: var(--white);
    padding: 14px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 1px 4px rgba(0,0,0,0.07);
  }
.logo { display: flex; align-items: center; gap: 10px; }
.logo-icon {
    width: 52px; height: 52px;
    background: var(--dark);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
  }
.logo-text { font-size: 19px; font-weight: 900; color: var(--dark); letter-spacing: 0.5px; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.lang-switch { display: flex; align-items: center; gap: 6px; margin-left: 8px; padding-left: 20px; border-left: 1px solid rgba(255,255,255,0.2); font-size: 12px; font-weight: 700; }
.lang-switch a { color: rgba(255,255,255,0.5); text-decoration: none; }
.lang-switch a.active { color: white; }
.lang-switch a:hover { color: white; }
.lang-switch span { color: rgba(255,255,255,0.25); }
.nav-links a { font-size: 14px; color: #444; font-weight: 500; }
.nav-links a:hover { color: var(--teal); }
/* PRODUCT NAV */.product-nav {
    background: var(--dark);
    display: flex;
    justify-content: center;
    gap: 0;
  }
.product-nav > a,
  .product-nav > .dropdown > a {
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.8px;
    padding: 14px 28px;
    display: block;
    transition: background 0.2s;
  }
.product-nav > a:hover,
  .product-nav > .dropdown > a:hover {
    background: var(--dark);
    color: #999;
  }
.product-nav > .dropdown { position: relative; }
.product-nav > .dropdown > .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 180px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    z-index: 999;
  }
.product-nav > .dropdown > .dropdown-menu > a {
    display: block;
    padding: 13px 22px;
    font-size: 14px;
    font-weight: 400;
    color: #333;
    letter-spacing: 0;
    background: white;
    border-bottom: 1px solid #eeeeee;
  }
.product-nav > .dropdown > .dropdown-menu > a:last-child { border-bottom: none; }
.product-nav > .dropdown > .dropdown-menu > a:hover { color: #999; background: white; }
.product-nav > .dropdown:hover > .dropdown-menu { display: block; }

.hero-placeholder {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, #555 0%, #888 100%);
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; color: rgba(255,255,255,0.3);
    border: 2px dashed rgba(255,255,255,0.15);
  }
.hero-content {
    position: absolute;
    bottom: 60px;
    left: 60px;
    color: white;
  }
.hero-content h1 {
    font-size: 34px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 10px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
  }
.hero-content p {
    font-size: 16px;
    margin-bottom: 28px;
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
  }
.hero-buttons { display: flex; gap: 14px; }
.btn-outline-white {
    border: 2px solid white;
    color: white;
    background: transparent;
    padding: 11px 22px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
  }
.btn-outline-white:hover { background: white; color: var(--dark); }
/* INTRO SECTION: 2 cols */.intro-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 400px;
  }
.intro-left {
    padding: 60px;
    position: relative;
  }
.intro-left .aldo-icon {
    width: 60px; height: 60px;
    margin-bottom: 30px;
  }
.intro-left h2 {
    font-size: 19px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--dark);
    margin-bottom: 20px;
  }
.intro-left p {
    font-size: 14.5px;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 14px;
  }
.intro-left p strong { color: var(--text); }
.intro-right {
    background: var(--light-bg);
    padding: 50px 50px 50px 50px;
  }
.intro-right h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 28px;
  }
.check-item {
    display: flex;
    gap: 18px;
    margin-bottom: 26px;
    align-items: flex-start;
  }
.check-icon {
    color: var(--teal);
    font-size: 22px;
    font-weight: 900;
    margin-top: 2px;
    flex-shrink: 0;
  }
.check-item h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
  }
.check-item p {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.65;
  }
.check-item p a { color: var(--teal); text-decoration: underline; }
/* SOFTLINE SECTION */.softline-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 60px;
    align-items: center;
  }
.softline-left h2 {
    font-size: 19px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--dark);
    margin-bottom: 20px;
    line-height: 1.3;
  }
.softline-left p {
    font-size: 14.5px;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 14px;
  }
.softline-right {
    display: flex;
    justify-content: flex-end;
  }
.softline-img-placeholder {
    width: 520px;
    height: 340px;
    background: linear-gradient(135deg, #ccc, #aaa);
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; color: rgba(0,0,0,0.3);
    border: 2px dashed rgba(0,0,0,0.15);
  }
/* PRODUCTS GRID */.products-section {
    background: var(--gray-bg);
    padding: 60px;
  }
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
/* 4th product alone */.products-grid-bottom {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
  }
.product-card-item {}
.product-img-placeholder {
    width: 100%;
    height: 220px;
    background: var(--gray-bg);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
  }
.product-img-placeholder img-fake {
    width: 160px; height: 160px;
  }
.product-card-item h3 {
    font-size: 16px;
    font-weight: 900;
    color: var(--dark);
    text-transform: uppercase;
    margin-bottom: 14px;
  }
.product-card-item p {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 18px;
  }
.product-card-item p strong { color: var(--text); }
.btn-productfiche {
    border: 1px solid var(--dark);
    color: var(--dark);
    background: transparent;
    padding: 9px 18px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    text-transform: uppercase;
    display: inline-block;
  }
.btn-productfiche:hover { background: var(--dark); color: white; }
/* ACCESSOIRES DARK SECTION */.accessoires-section {
    background: var(--dark);
    padding: 50px 60px;
    color: white;
  }
.accessoires-section h2 {
    font-size: 19px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 40px;
  }
.accessoires-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
  }
.accessoire-item {}
.accessoire-icon {
    width: 50px; height: 50px;
    margin-bottom: 16px;
    opacity: 0.85;
  }
.accessoire-item h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--teal);
    margin-bottom: 8px;
  }
.accessoire-item p {
    font-size: 13.5px;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    font-style: italic;
  }
/* INSPIRATIE SECTION */.inspiratie-section { padding: 60px; }
.inspiratie-section h2 {
    font-size: 19px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--dark);
    margin-bottom: 30px;
  }
.inspiratie-grid {
    display: grid;
    grid-template-columns: 1fr 0.55fr 0.45fr;
    gap: 16px;
    align-items: stretch;
  }
.insp-img-placeholder {
    width: 100%;
    background: linear-gradient(135deg, #aaa, #888);
    display: flex; align-items: center; justify-content: center;
    font-size: 12px; color: rgba(255,255,255,0.5);
    border: 2px dashed rgba(255,255,255,0.3);
    min-height: 400px;
  }
.insp-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
.insp-img-small {
    width: 100%;
    height: 190px;
    background: linear-gradient(135deg, #999, #777);
    display: flex; align-items: center; justify-content: center;
    font-size: 12px; color: rgba(255,255,255,0.5);
    border: 2px dashed rgba(255,255,255,0.3);
  }
.insp-quote {
    padding: 20px 0;
  }
.insp-quote .quote-mark {
    font-size: 36px;
    color: var(--dark);
    line-height: 1;
    margin-bottom: 10px;
  }
.insp-quote blockquote {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.5;
    margin-bottom: 16px;
  }
.insp-quote p {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.7;
  }
/* ASSORTIMENT SECTION */.assortiment-section { padding: 60px; }
.assortiment-section h2 {
    font-size: 19px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--dark);
    margin-bottom: 14px;
  }
.assortiment-section > p {
    font-size: 14.5px;
    color: var(--text-muted);
    line-height: 1.75;
    max-width: 680px;
    margin-bottom: 40px;
  }
.assortiment-cards {
    display: flex;
    gap: 0;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    position: relative;
  }
.assortiment-cards::-webkit-scrollbar { display: none; }
.assortiment-card {
    position: relative;
    flex: 0 0 25%;
    height: 280px;
    overflow: hidden;
    scroll-snap-align: start;
  }
.assortiment-card img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
  }
.assortiment-card:hover img { transform: scale(1.03); }
.assortiment-arrows {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 24px;
  }
.assortiment-arrows button {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--dark);
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
.assortiment-arrows svg { width: 26px; height: 26px; }
.assortiment-arrows button:hover { opacity: 0.6; }


/* FOOTER */.footer {
    background: var(--dark);
    color: white;
    padding: 60px;
  }
.footer-grid {
    display: grid;
    grid-template-columns: 280px 1fr 160px 160px;
    gap: 40px;
    margin-bottom: 40px;
    align-items: start;
  }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 24px; }
.footer-logo-icon {
    width: 40px; height: 40px;
    background: rgba(255,255,255,0.15);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
  }
.footer-logo-text { font-size: 16px; font-weight: 900; letter-spacing: 0.5px; }
.footer-info p { font-size: 13px; color: rgba(255,255,255,0.7); line-height: 1.8; }
.footer-social { margin-top: 16px; display: flex; align-items: center; gap: 12px; }
.footer-social span { font-size: 12px; color: rgba(255,255,255,0.5); font-style: italic; }
.footer-social a { color: rgba(255,255,255,0.8); font-size: 15px; }
.footer-form h3 { font-size: 18px; font-weight: 900; text-transform: uppercase; margin-bottom: 24px; }
.footer-form input, .footer-form textarea {
    width: 100%; background: transparent; border: none;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    color: white; padding: 10px 0; margin-bottom: 16px;
    font-size: 14px; outline: none;
  }
.footer-form input::placeholder, .footer-form textarea::placeholder { color: rgba(255,255,255,0.45); }
.footer-form textarea { height: 90px; resize: none; border: 1px solid rgba(255,255,255,0.3); padding: 10px; }
.btn-outline-white-sm {
    border: 2px solid white; color: white; background: transparent;
    padding: 9px 22px; font-size: 12px; font-weight: 700;
    letter-spacing: 0.5px; cursor: pointer; margin-top: 10px;
  }
.btn-outline-white-sm:hover { background: white; color: var(--dark); }
.footer-nav { display: flex; flex-direction: column; }
.footer-nav a {
    font-size: 13px; color: rgba(255,255,255,0.75);
    padding: 5px 0; text-transform: uppercase;
    font-weight: 600; letter-spacing: 0.3px;
  }
.footer-nav a:hover { color: white; }
.footer-nav a::after { content: " →"; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: rgba(255,255,255,0.45);
  }
/* BOTTOM BAR */.bottom-bar {
    background: #f2f2f2;
    padding: 14px 60px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    border-top: 1px solid #ddd;
  }
.bottom-bar span, .bottom-bar a { font-size: 13px; color: #444; }
.bottom-bar a:hover { color: var(--teal); }
/* FENETRES OVERVIEW */.fen-overview { padding: 70px 60px; display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.fen-col-img { width: 100%; height: 260px; object-fit: cover; display: block; margin-bottom: 30px; }
.fen-col h2 { font-size: 20px; font-weight: 900; text-transform: uppercase; color: var(--dark); margin-bottom: 18px; }
.fen-col p { font-size: 14.5px; color: var(--text-muted); line-height: 1.8; margin-bottom: 22px; }
.fen-col .btn-productfiche { display: inline-block; text-decoration: none; }

/* ============ NEW NAV/FOOTER SYSTEM ============ */h1, h2, h3, h4 { font-family: "Archivo", sans-serif; }
.nav {
    position: sticky; top: 0; z-index: 100;
    background: var(--paper) !important;
    border-bottom: 1px solid var(--line);
  }
.nav-inner {
    max-width: 1360px; margin: 0 auto; padding: 0 56px;
    display: flex; align-items: center;
    height: 88px;
  }
.brand { display: flex; align-items: center; gap: 13px; margin-right: 30px; }
.brand-mark { width: 27px; height: 27px; flex-shrink: 0; }
.brand-name {
    font-family: "Archivo", sans-serif; font-weight: 800; font-size: 18px;
    letter-spacing: 0.01em; color: var(--ink);
  }
.brand-name em {
    font-style: normal; font-weight: 500; font-size: 14px; color: var(--ink-45);
    letter-spacing: 0.03em; margin-left: 2px;
  }
.nav-right { display: flex; align-items: center; margin-left: auto; }
.nav-links2 { display: flex; align-items: center; }
.nav-links2 > a {
    position: relative;
    font-size: 14.5px; font-weight: 600; color: var(--ink);
    padding: 6px 0;
    margin-right: 34px;
  }
.nav-links2 > a::after {
    content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px;
    background: var(--pine); transition: right 0.22s ease;
  }
.nav-links2 > a:hover::after, .nav-links2 > a.active::after { right: 0; }
.nav-links2 > a.active { color: var(--pine); }
.nav-cta2 {
    display: flex; align-items: center; gap: 22px; margin-left: 36px; padding-left: 30px;
    border-left: 1px solid var(--line);
  }
.btn-primary2 {
    background: var(--pine); color: var(--paper); font-size: 13.5px; font-weight: 600;
    padding: 13px 22px; border: none; border-radius: 0; letter-spacing: 0.01em;
    transition: background 0.15s; display: inline-block;
  }
.btn-primary2:hover { background: var(--pine); }
.lang-switch2 { display: flex; align-items: center; gap: 5px; font-size: 12.5px; font-weight: 600; color: var(--ink-45); }
.lang-switch2 a.active { color: var(--ink); }
.lang-switch2 a:hover { color: var(--pine); }
footer.footer2 { background: var(--pine) !important; color: var(--paper); padding: 80px 56px 0; }
.footer2-grid {
    display: flex; flex-wrap: wrap; gap: 40px; max-width: 1360px; margin: 0 auto;
    padding-bottom: 70px; border-bottom: 1px solid var(--line-on-dark);
  }
.footer2-grid > div { flex: 1 1 0; min-width: 200px; }

.footer2-brand { flex: 1.4 1 0; }
.footer2-brand .brand-name { color: var(--paper); }
.footer2-brand .brand-name em { color: var(--paper); }
.footer2-addr { margin-top: 22px; font-size: 14.5px; color: var(--paper); line-height: 1.85; }
.footer2-addr a { color: var(--paper); font-weight: 600; }
.footer2-col h4 {
    font-family: "Archivo", sans-serif; font-size: 12.5px; font-weight: 700; letter-spacing: 0.04em;
    color: var(--paper); margin-bottom: 18px; text-transform: uppercase;
  }
.footer2-col a { display: block; font-size: 14.5px; color: var(--paper); margin-bottom: 13px; }
.footer2-col a:hover { color: var(--paper); text-decoration: underline; }
.footer2-form input, .footer2-form textarea {
    width: 100%; background: transparent; border: none; border-bottom: 1px solid rgba(245,243,238,0.4);
    color: var(--paper); font-family: inherit; font-size: 14.5px; padding: 10px 0; margin-bottom: 16px;
  }
.footer2-form input::placeholder, .footer2-form textarea::placeholder { color: rgba(245,243,238,0.75); }
.footer2-form textarea { resize: none; height: 70px; }
.footer2-bottom {
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px;
    max-width: 1360px; margin: 0 auto;
    padding: 26px 0; font-size: 13px; color: var(--paper);
  }
.footer2-bottom a { color: var(--paper); }

/* ============ ASSORTIMENT UPGRADE ============ */.assortiment-card { background: var(--pine); }
.assortiment-label {
    position: absolute; left: 14px; bottom: 14px;
    border: 1.5px solid rgba(245,243,238,0.75);
    color: var(--paper); font-size: 12.5px; font-weight: 600;
    font-family: "Archivo", sans-serif; letter-spacing: 0.02em;
    display: inline-flex; align-items: center; gap: 10px;
    padding: 10px 16px;
    background: rgba(18,33,29,0.72);
    transition: background 0.2s, border-color 0.2s;
  }
.assortiment-card:hover .assortiment-label { background: var(--pine); border-color: var(--paper); }
.assortiment-label svg { width: 13px; height: 13px; transition: transform 0.2s; flex-shrink: 0; }
.assortiment-card:hover .assortiment-label svg { transform: translate(3px,-3px); }
.assortiment-arrows button {
    background: none; border: 1.5px solid var(--line); border-radius: 50%;
    cursor: pointer; color: var(--ink); width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.15s, border-color 0.15s;
  }
.assortiment-arrows button:hover { background: var(--pine); border-color: var(--pine); color: var(--paper); opacity: 1; }
.assortiment-arrows svg { width: 18px; height: 18px; }
.wrap { max-width: 1360px; margin: 0 auto; padding: 0 56px; }
/* ============ HERO ============ */.hero {
    position: relative;
    display: flex;
    height: 640px;
    background: var(--pine);
  }
.hero-copy { flex: 1 1 0; align-self: stretch; }
.hero-img-col { flex: 1 1 0; align-self: stretch; height: 100%; }
.hero-copy {
    display: flex; flex-direction: column; justify-content: center;
    padding: 60px 64px 60px 56px;
    position: relative;
  }
.hero-eyebrow-line {
    width: 44px; height: 3px; background: var(--paper); margin-bottom: 28px;
  }
.hero h1 {
    font-size: clamp(40px, 4.4vw, 62px);
    color: var(--paper);
    max-width: 11ch;
  }
.hero-copy-home h1 { max-width: 18ch; }
.hero-sub {
    margin-top: 22px; font-size: 17px; color: var(--paper); max-width: 34ch;
    font-weight: 400;
  }
.hero-buttons { display: flex; gap: 14px; margin-top: 38px; flex-wrap: wrap; }
.btn-outline {
    border: 1.5px solid rgba(245,243,238,0.4); color: var(--paper);
    padding: 13px 26px; font-size: 13.5px; font-weight: 600; letter-spacing: 0.01em;
    border-radius: 2px; transition: all 0.15s; background: transparent;
  }
.btn-outline:hover { border-color: var(--paper); background: rgba(245,243,238,0.08); }
.btn-solid-light {
    background: var(--paper); color: var(--ink);
    padding: 13px 26px; font-size: 13.5px; font-weight: 600; letter-spacing: 0.01em;
    border-radius: 2px; border: 1.5px solid var(--paper);
  }
.btn-solid-light:hover { background: transparent; color: var(--paper); }
.hero-img-col { position: relative; overflow: hidden; }
.hero-img-col img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.hero-tag {
    position: absolute; left: 32px; bottom: 32px;
    background: var(--paper); color: var(--ink);
    padding: 10px 16px; font-size: 12.5px; font-weight: 600;
    display: flex; align-items: center; gap: 10px;
  }
.hero-tag .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--pine); }

/* ============ INTRO / STATEMENT ============ */.statement {
    padding: 120px 0 100px;
    border-bottom: 1px solid var(--line);
  }
.statement-grid {
    display: flex; gap: 80px;
  }
.statement-grid > div:first-child { flex: 0.85 1 0; }
.statement-grid > div:last-child { flex: 1.15 1 0; }
.statement-label {
    font-size: 13px; font-weight: 600; color: var(--pine);
    letter-spacing: 0.02em;
  }
.statement h2 {
    font-size: clamp(28px, 3vw, 40px);
    margin-top: 18px;
    max-width: 12ch;
  }
.statement-body p {
    font-size: 18px; color: var(--ink-70); max-width: 56ch; margin-bottom: 20px;
  }
.statement-body p:last-child { margin-bottom: 0; }
.statement-body strong { color: var(--ink); font-weight: 600; }

/* ============ VALUES STRIP ============ */.values {
    background: var(--pine); color: var(--paper);
    padding: 76px 0;
  }
.values-inner { display: flex; }
.value-item {
    flex: 1; padding: 0 32px; position: relative;
  }
.value-item:not(:first-child) { border-left: 1px solid var(--line-on-dark); }
.value-num {
    font-family: "Archivo", sans-serif; font-size: 13px; font-weight: 700; color: var(--paper);
    margin-bottom: 18px; letter-spacing: 0.04em;
  }
.value-item p {
    font-size: 15.5px; font-weight: 500; line-height: 1.45; color: var(--paper);
  }

/* ============ RANGE / ASSORTMENT ============ */.range { padding: 110px 0 100px; }
.range-head {
    display: flex; justify-content: space-between; align-items: flex-end;
    margin-bottom: 52px; gap: 40px;
  }
.range-head h2 { font-size: clamp(28px, 3vw, 38px); max-width: 12ch; }
.range-head p { font-size: 16px; color: var(--ink-70); max-width: 42ch; }

.range-grid {
    display: flex; flex-wrap: wrap; gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
  }
.range-card {
    position: relative; overflow: hidden; background: var(--pine); height: 320px;
  }
.range-card:nth-child(1), .range-card:nth-child(2) { flex-basis: 49.5%; }
.range-card:nth-child(3), .range-card:nth-child(4), .range-card:nth-child(5), .range-card:nth-child(6) { flex-basis: 24.5%; }
.range-card:nth-child(3):nth-last-child(2), .range-card:nth-child(4):nth-last-child(1) { flex-basis: 49.5%; }
.range-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; opacity: 0.92; }
.range-card:hover img { transform: scale(1.045); opacity: 1; }
.range-label {
    position: absolute; left: 20px; bottom: 20px;
    border: 1.5px solid rgba(245,243,238,0.75);
    color: var(--paper); font-size: 13px; font-weight: 600;
    font-family: "Archivo", sans-serif; letter-spacing: 0.02em;
    display: inline-flex; align-items: center; gap: 12px;
    padding: 12px 20px;
    background: rgba(18,33,29,0.72);
    backdrop-filter: blur(2px);
    transition: background 0.2s, border-color 0.2s;
  }
.range-card:hover .range-label { background: var(--pine); border-color: var(--paper); }
.range-label svg { width: 14px; height: 14px; transition: transform 0.2s; flex-shrink: 0; }
.range-card:hover .range-label svg { transform: translate(3px,-3px); }

/* ============ CRAFT / PHOTO SPLIT ============ */.craft {
    display: flex;
    background: var(--paper-2);
  }
.craft-img { flex: 1 1 0; }
.craft-copy { flex: 1 1 0; }
.craft-img { position: relative; min-height: 560px; }
.craft-img img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.craft-copy { padding: 90px 64px; display: flex; flex-direction: column; justify-content: center; }
.craft-copy .statement-label { margin-bottom: 18px; }
.craft-copy h2 { font-size: clamp(26px, 2.6vw, 34px); max-width: 14ch; margin-bottom: 34px; }
.craft-list { display: flex; flex-direction: column; }
.craft-row {
    display: flex; gap: 20px; padding: 20px 0;
    border-top: 1px solid var(--line);
  }
.craft-list .craft-row:last-child { border-bottom: 1px solid var(--line); }
.craft-row-mark { font-family: "Archivo", sans-serif; font-weight: 700; color: var(--pine); font-size: 14px; min-width: 26px; }
.craft-row p { font-size: 15.5px; color: var(--ink-70); font-weight: 500; }

/* ============ PROJECTS ============ */.projects { padding: 110px 0 100px; border-top: 1px solid var(--line); }
.projects-grid {
    display: flex; gap: 28px; margin-top: 52px;
  }
.project-card { flex: 1 1 0; }
.project-card:first-child { flex: 1.3 1 0; }
.project-img { position: relative; overflow: hidden; height: 460px; }
.project-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.project-card:hover .project-img img { transform: scale(1.04); }
.project-tags { margin-top: 16px; display: flex; gap: 10px; flex-wrap: wrap; }
.project-tags span { font-size: 12px; font-weight: 600; color: var(--ink-45); text-transform: uppercase; letter-spacing: 0.03em; }
.project-tags span:not(:last-child)::after { content: "/"; margin-left: 10px; color: var(--line); }

/* ============ CTA BANNER ============ */.cta-band {
    background: var(--pine); color: var(--paper);
    padding: 90px 0; text-align: center;
  }
.cta-band h2 { font-size: clamp(28px, 3.4vw, 44px); max-width: 16ch; margin: 0 auto 16px; }
.cta-band p { font-size: 17px; color: var(--paper); margin-bottom: 34px; }
.cta-band .hero-buttons { justify-content: center; }
.journal { padding: 100px 0 110px; }
.journal-grid { display: flex; gap: 1px; background: var(--line); border: 1px solid var(--line); margin-top: 52px; }
.journal-card { flex: 1 1 0; background: var(--paper); padding: 40px; display: flex; flex-direction: column; }
.journal-img { aspect-ratio: 16/9; overflow: hidden; margin-bottom: 26px; }
.journal-img img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 15%; }
.journal-card h3 { font-size: 21px; margin-bottom: 12px; max-width: 30ch; }
.journal-card p { font-size: 15px; color: var(--ink-70); max-width: 46ch; }
.journal-more { margin-top: auto; padding-top: 22px; font-size: 13.5px; font-weight: 700; color: var(--pine); display: flex; align-items: center; gap: 8px; }

/* ============ INTERIOR PAGE POLISH ============ */@media (min-width: 901px) { .hero { height: 480px !important; } }
.hero-content h1 { text-shadow: none !important; letter-spacing: -0.01em; }
.hero-content p { text-shadow: none !important; font-size: 17px !important; }
.btn-outline-white {
    border-width: 1.5px !important;
    font-weight: 600 !important;
    letter-spacing: 0.03em !important;
    transition: background 0.15s, border-color 0.15s !important;
  }
.btn-outline-white:hover { background: var(--paper) !important; border-color: var(--paper) !important; }
.eyebrow-line { width: 44px; height: 3px; background: var(--pine); margin-bottom: 26px; }
.intro-left h2, .assortiment-section h2, .products-section h2, .fen-overview h2,
  .accessoires-section h2, .inspiratie-section h2, .softline-section h2 {
    font-size: 24px !important;
    letter-spacing: -0.01em !important;
  }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; flex-direction: column; gap: 5px; z-index: 20; }
.nav-call-mobile { display: none; align-items: center; justify-content: center; width: 40px; height: 40px; margin-left: auto; color: var(--ink); }
.nav-call-mobile svg { width: 21px; height: 21px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--pine); transition: 0.25s; }
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.topbar { background: #f2f2f2; padding: 8px 40px; display: flex; justify-content: space-between; align-items: center; font-size: 12px; border-bottom: 1px solid #e0e0e0; }
.lang-switch { display: flex; align-items: center; gap: 6px; margin-left: 8px; padding-left: 20px; border-left: 1px solid #ccc; font-size: 12px; font-weight: 700; }
.lang-switch a { color: #999; text-decoration: none; }
.lang-switch a.active { color: var(--dark); }
.lang-switch a:hover { color: var(--teal); }
.lang-switch span { color: #ccc; }
.product-nav { background: var(--dark); display: flex; justify-content: center; }
.product-nav > .dropdown > .dropdown-menu > a { display: block; padding: 13px 22px; font-size: 14px; font-weight: 400; color: #333; background: white; border-bottom: 1px solid #eee; }

.hero-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, #222 0%, #555 100%); display: flex; align-items: center; justify-content: center; font-size: 14px; color: rgba(255,255,255,0.2); border: 2px dashed rgba(255,255,255,0.1); }
.hero-bg { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.55) 100%); }
.hero-content h1 { font-size: 34px; font-weight: 900; text-transform: uppercase; margin-bottom: 10px; text-shadow: 0 2px 8px rgba(0,0,0,0.5); }
.hero-content p { font-size: 16px; font-weight: 600; margin-bottom: 28px; }
.btn-outline-white { border: 2px solid white; color: white; background: transparent; padding: 11px 22px; font-size: 13px; font-weight: 700; cursor: pointer; }
/* INTRO */.intro-section { display: grid; grid-template-columns: 1fr 1fr; min-height: 480px; }
.intro-left { padding: 60px; }
.intro-right { background: var(--light-bg); padding: 50px; }
.intro-right h3 { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 28px; }
.check-item { display: flex; gap: 18px; margin-bottom: 24px; align-items: flex-start; }
.check-item p strong { color: var(--text); }
/* TYPES SECTION */.types-section { background: var(--gray-bg); padding: 60px; }
.types-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.type-img-ph { width: 100%; height: 200px; background: linear-gradient(135deg, #999, #666); display: flex; align-items: center; justify-content: center; font-size: 12px; color: rgba(255,255,255,0.4); border: 2px dashed rgba(255,255,255,0.2); margin-bottom: 20px; }
.type-img { width: 100%; height: 200px; object-fit: cover; border-radius: 6px; margin-bottom: 20px; display: block; }
.type-card h3 { font-size: 16px; font-weight: 900; text-transform: uppercase; color: var(--dark); margin-bottom: 12px; }
.type-card p { font-size: 13.5px; color: var(--text-muted); line-height: 1.7; }
.type-card p strong { color: var(--text); }
/* IO-HOMECONTROL SECTION */.io-section { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; padding: 60px; align-items: center; }
.io-left h2 { font-size: 19px; font-weight: 900; text-transform: uppercase; color: var(--dark); margin-bottom: 24px; line-height: 1.3; }
.io-left h2 strong { color: var(--teal); }
.io-left p { font-size: 14.5px; color: var(--text-muted); line-height: 1.75; margin-bottom: 14px; }
.io-left p strong { color: var(--text); }
.io-left ul { margin: 14px 0 14px 20px; }
.io-left ul li { font-size: 14px; color: var(--text-muted); line-height: 1.8; margin-bottom: 6px; }
.io-right { display: flex; align-items: center; justify-content: center; }
.io-logo { width: 260px; display: flex; align-items: center; justify-content: center; }
.io-logo img { width: 100%; height: auto; }
/* TAHOMA SECTION */.tahoma-section { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; padding: 60px; align-items: center; background: #fafafa; }
.tahoma-left .img-ph { width: 100%; height: 380px; background: linear-gradient(135deg, #d8d0c0, #b0a890); display: flex; align-items: center; justify-content: center; font-size: 13px; color: rgba(0,0,0,0.3); border: 2px dashed rgba(0,0,0,0.15); }
.tahoma-left .img-real { width: 100%; height: 380px; object-fit: cover; border-radius: 6px; display: block; }
.tahoma-right h2 { font-size: 19px; font-weight: 900; text-transform: uppercase; color: var(--dark); margin-bottom: 24px; line-height: 1.3; }
.tahoma-right h2 strong { color: var(--teal); }
.tahoma-right p { font-size: 14.5px; color: var(--text-muted); line-height: 1.75; margin-bottom: 14px; }
.tahoma-right p strong { color: var(--text); }
.tahoma-right ul { margin: 10px 0 14px 20px; }
.tahoma-right ul li { font-size: 14px; color: var(--text-muted); line-height: 1.8; margin-bottom: 6px; }
/* SOLAR SECTION */.solar-section { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; padding: 60px; align-items: center; }
.solar-left h2 { font-size: 19px; font-weight: 900; text-transform: uppercase; color: var(--dark); margin-bottom: 24px; line-height: 1.3; }
.solar-left p { font-size: 14.5px; color: var(--text-muted); line-height: 1.75; margin-bottom: 14px; }
.solar-left p strong { color: var(--text); }
.solar-left h3 { font-size: 15px; font-weight: 700; color: var(--dark); margin: 18px 0 10px; }
.solar-left ul { margin: 0 0 14px 20px; }
.solar-left ul li { font-size: 14px; color: var(--text-muted); line-height: 1.8; margin-bottom: 6px; }
.solar-right .img-ph { width: 100%; height: 340px; background: linear-gradient(135deg, #5080a0, #2050a0); display: flex; align-items: center; justify-content: center; font-size: 13px; color: rgba(255,255,255,0.4); border: 2px dashed rgba(255,255,255,0.2); }
.solar-right .img-real { width: 100%; height: 340px; object-fit: cover; border-radius: 6px; display: block; }
/* ACCESSOIRES DARK */.accessoire-icon { width: 50px; height: 50px; margin-bottom: 16px; }
/* ASSORTIMENT */.assortiment-cards { display: flex; gap: 0; overflow-x: auto; scroll-behavior: smooth; scroll-snap-type: x mandatory; scrollbar-width: none; -ms-overflow-style: none; }
.footer-social a { color: rgba(255,255,255,0.8); }
.btn-sm { border: 2px solid white; color: white; background: transparent; padding: 9px 22px; font-size: 12px; font-weight: 700; cursor: pointer; margin-top: 10px; }
.btn-sm:hover { background: white; color: var(--dark); }
.footer-nav a { font-size: 13px; color: rgba(255,255,255,0.75); padding: 5px 0; text-transform: uppercase; font-weight: 600; }
/* ============ SPEC GRID (product cards) ============ */.spec-grid { display: flex; flex-wrap: wrap; gap: 1px; background: var(--line); border: 1px solid var(--line); margin-top: 52px; }
.spec-card { flex: 1 1 23%; background: var(--paper); padding: 30px; display: flex; flex-direction: column; }
.spec-card-img { height: 160px; display: flex; align-items: center; justify-content: center; margin-bottom: 22px; }
.spec-card-img img { max-width: 100%; max-height: 100%; object-fit: contain; }
.spec-card h3 { font-size: 15px; font-weight: 800; color: var(--ink); margin-bottom: 12px; letter-spacing: 0.01em; }
.spec-card p { font-size: 13.5px; color: var(--ink-70); line-height: 1.65; margin-bottom: 20px; flex-grow: 1; }

/* ============ TESTIMONIAL SPLIT ============ */.testi-split { display: flex; gap: 1px; margin-top: 52px; background: var(--line); }
.testi-photos { flex: 1.2 1 0; display: flex; flex-direction: column; gap: 1px; }
.testi-photos img { width: 100%; height: 260px; object-fit: cover; display: block; }
.testi-quote { flex: 1 1 0; background: var(--pine); color: var(--paper); padding: 50px; display: flex; flex-direction: column; justify-content: center; }
.testi-quote .quote-mark { font-family: "Archivo", sans-serif; font-size: 60px; color: var(--paper); opacity: 0.55; line-height: 1; margin-bottom: 10px; }
.testi-quote blockquote { font-family: "Archivo", sans-serif; font-size: 22px; font-weight: 700; line-height: 1.4; margin-bottom: 24px; }
.testi-quote p { font-size: 14.5px; color: var(--paper); line-height: 1.7; }

/* ============ GENERIC LIST STYLING (for craft-copy/statement-body) ============ */.craft-copy ul, .statement-body ul { margin: 16px 0; padding: 0; list-style: none; }
.craft-copy ul li, .statement-body ul li {
    position: relative; padding-left: 22px; margin-bottom: 10px;
    font-size: 14.5px; color: var(--ink-70); line-height: 1.6;
  }
.craft-copy ul li::before, .statement-body ul li::before {
    content: ""; position: absolute; left: 0; top: 8px; width: 8px; height: 1.5px; background: var(--pine);
  }
.product-nav > a, .product-nav > .dropdown > a { color: var(--white); font-size: 13px; font-weight: 700; letter-spacing: 0.8px; padding: 14px 28px; display: block; }

.hero-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, #333 0%, #666 100%); display: flex; align-items: center; justify-content: center; font-size: 14px; color: rgba(255,255,255,0.2); border: 2px dashed rgba(255,255,255,0.1); }
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-bottom: 40px; }
.product-img-ph { width: 100%; height: 200px; background: linear-gradient(135deg, #555, #333); display: flex; align-items: center; justify-content: center; font-size: 12px; color: rgba(255,255,255,0.4); border: 2px dashed rgba(255,255,255,0.2); margin-bottom: 20px; }
.product-img { width: 100%; height: 200px; object-fit: cover; border-radius: 6px; margin-bottom: 20px; display: block; }
.product-card h3 { font-size: 16px; font-weight: 900; text-transform: uppercase; color: var(--dark); margin-bottom: 12px; }
.product-card p { font-size: 13.5px; color: var(--text-muted); line-height: 1.7; margin-bottom: 10px; }
.product-card p strong { color: var(--text); }
.maatwerk-section { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; padding: 60px; align-items: center; }
.maatwerk-left .img-ph { width: 100%; height: 380px; background: linear-gradient(135deg, #c0b090, #907060); display: flex; align-items: center; justify-content: center; font-size: 13px; color: rgba(255,255,255,0.4); border: 2px dashed rgba(255,255,255,0.2); }
.maatwerk-carousel { position: relative; width: 100%; height: 380px; border-radius: 6px; overflow: hidden; }
.maatwerk-slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 0.5s ease; }
.maatwerk-slide.active { opacity: 1; }
.maatwerk-dots { position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; z-index: 2; }
.maatwerk-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.5); cursor: pointer; transition: background 0.3s ease; }
.maatwerk-dot.active { background: #fff; }
.maatwerk-right h2 { font-size: 19px; font-weight: 900; text-transform: uppercase; color: var(--dark); margin-bottom: 24px; line-height: 1.3; }
.maatwerk-right p { font-size: 14.5px; color: var(--text-muted); line-height: 1.75; margin-bottom: 14px; }
.maatwerk-right p strong { color: var(--text); }
.craft-copy ul, .statement-body ul, .craft-copy ol, .statement-body ol { margin: 16px 0; padding: 0; list-style: none; }
.craft-copy ul li, .statement-body ul li, .craft-copy ol li, .statement-body ol li {
    position: relative; padding-left: 22px; margin-bottom: 10px;
    font-size: 14.5px; color: var(--ink-70); line-height: 1.6;
  }
.craft-copy ul li::before, .statement-body ul li::before, .craft-copy ol li::before, .statement-body ol li::before {
    content: ""; position: absolute; left: 0; top: 8px; width: 8px; height: 1.5px; background: var(--pine);
  }
.hero-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, #2a3a2a 0%, #4a6050 100%); display: flex; align-items: center; justify-content: center; font-size: 14px; color: rgba(255,255,255,0.2); border: 2px dashed rgba(255,255,255,0.1); }
/* TYPES SECTION - 4 cards with 3+1 layout */.types-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-bottom: 40px; }
.types-grid-1 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.type-img-ph { width: 100%; height: 200px; background: linear-gradient(135deg, #555, #333); display: flex; align-items: center; justify-content: center; font-size: 12px; color: rgba(255,255,255,0.4); border: 2px dashed rgba(255,255,255,0.2); margin-bottom: 20px; }
.type-card h3 { font-size: 16px; font-weight: 900; text-transform: uppercase; color: var(--dark); margin-bottom: 12px; line-height: 1.3; }
/* DOEKEN SECTION */.doeken-section { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; padding: 60px; align-items: center; }
.doeken-left .img-ph { width: 100%; height: 380px; background: radial-gradient(circle, #d0c0b0, #a09080); display: flex; align-items: center; justify-content: center; font-size: 13px; color: rgba(0,0,0,0.3); border: 2px dashed rgba(0,0,0,0.15); border-radius: 50%; }
.doeken-left .img-real { width: 380px; height: 380px; object-fit: cover; border-radius: 50%; display: block; margin: 0 auto; }
.doeken-right h2 { font-size: 19px; font-weight: 900; text-transform: uppercase; color: var(--dark); margin-bottom: 24px; }
.doeken-right p { font-size: 14.5px; color: var(--text-muted); line-height: 1.75; margin-bottom: 16px; }
.doeken-right ol { padding-left: 22px; }
.doeken-right ol li { font-size: 14px; color: var(--text-muted); line-height: 1.8; margin-bottom: 8px; }
.doeken-right ol li strong { color: var(--text); }
/* SOMFY SECTION */.somfy-section { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; padding: 60px; align-items: center; background: #fafafa; }
.somfy-left h2 { font-size: 19px; font-weight: 900; text-transform: uppercase; color: var(--dark); margin-bottom: 24px; }
.somfy-left p { font-size: 14.5px; color: var(--text-muted); line-height: 1.75; margin-bottom: 14px; }
.somfy-left ol { padding-left: 22px; margin-bottom: 14px; }
.somfy-left ol li { font-size: 14px; color: var(--text-muted); line-height: 1.8; margin-bottom: 8px; }
.somfy-left ol li strong { color: var(--text); }
.somfy-right { display: flex; align-items: center; justify-content: center; }
.somfy-logo { width: 260px; display: flex; align-items: center; justify-content: center; }
.somfy-logo img { width: 100%; height: auto; }

.hero-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, #1a1a1a 0%, #444 100%); display: flex; align-items: center; justify-content: center; font-size: 14px; color: rgba(255,255,255,0.2); border: 2px dashed rgba(255,255,255,0.1); }
.intro-left h2 { font-size: 19px; font-weight: 900; text-transform: uppercase; color: var(--dark); margin-bottom: 20px; line-height: 1.3; }
/* MOUSTIQUAIRES TYPES SECTION */.moustik-types-section { background: var(--gray-bg); padding: 60px; }
.moustik-types-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.moustik-type-card img { width: 100%; height: 300px; object-fit: cover; margin-bottom: 24px; display: block; }
.moustik-type-card h3 { font-size: 19px; font-weight: 900; text-transform: uppercase; color: var(--dark); margin-bottom: 16px; }
.moustik-type-card p { font-size: 14.5px; color: var(--text-muted); line-height: 1.75; }
.moustik-type-card p strong { color: var(--text); }
/* TOILE MOUSTIQUAIRE SECTION */.gaas-section { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; padding: 60px; align-items: start; }
.gaas-left .img-ph { width: 100%; height: 420px; background: linear-gradient(135deg, #c0a890, #907060); display: flex; align-items: center; justify-content: center; font-size: 13px; color: rgba(255,255,255,0.4); border: 2px dashed rgba(255,255,255,0.2); margin-bottom: 16px; }
.gaas-carousel { position: relative; width: 100%; height: 420px; margin-bottom: 16px; overflow: hidden; }
.gaas-carousel .gaas-slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 0.5s ease; }
.gaas-carousel .gaas-slide.active { opacity: 1; }
.gaas-left .pagination { display: flex; justify-content: center; gap: 8px; }
.gaas-left .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--dark); cursor: pointer; }
.gaas-left .dot.inactive { background: #ccc; }
.gaas-right h2 { font-size: 19px; font-weight: 900; text-transform: uppercase; color: var(--dark); margin-bottom: 20px; }
.gaas-right > p { font-size: 14.5px; color: var(--text-muted); line-height: 1.75; margin-bottom: 20px; }
.gaas-right ol { padding-left: 22px; }
.gaas-right ol > li { font-size: 14.5px; color: var(--text-muted); line-height: 1.8; margin-bottom: 14px; font-weight: 700; color: var(--dark); }
.gaas-right ol > li ul { padding-left: 20px; margin-top: 6px; }
.gaas-right ol > li ul li { font-size: 13.5px; color: var(--text-muted); font-weight: 400; line-height: 1.7; margin-bottom: 4px; list-style: circle; }
/* PAGE CONTENT */.page-content {
    max-width: 780px;
    margin: 0 auto;
    padding: 90px 40px 100px;
  }
.page-content h1 {
    font-family: "Archivo", sans-serif;
    font-size: 34px;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 24px;
    letter-spacing: -0.01em;
  }
.page-content p {
    font-size: 14.5px;
    color: var(--ink-70);
    line-height: 1.75;
    margin-bottom: 14px;
  }
.page-content ol {
    padding-left: 22px;
    margin-bottom: 16px;
  }
.page-content ol li {
    font-size: 14.5px;
    color: var(--ink-70);
    line-height: 1.75;
    margin-bottom: 14px;
    padding-left: 6px;
  }
.page-content h2 {
    font-family: "Archivo", sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--pine);
    margin: 28px 0 10px;
  }
.bottom-bar span { font-size: 13px; color: #444; }
.bottom-bar a { font-size: 13px; color: #444; }

.hero-content { position: absolute; bottom: 60px; left: 60px; color: white; max-width: 760px; }
.hero-content p { font-size: 16px; font-weight: 600; text-shadow: 0 2px 8px rgba(0,0,0,0.5); }
/* CONTACT / MAP SECTION */.contact-section { display: grid; grid-template-columns: 1.3fr 1fr; align-items: stretch; }
.map-wrap { position: relative; min-height: 700px; background: linear-gradient(135deg, #cfe8d8 0%, #b9dcc4 40%, #a9d4b8 100%); overflow: hidden; }
.map-wrap::before {
    content: ""; position: absolute; inset: 0;
    background-image:
      repeating-linear-gradient(0deg, rgba(255,255,255,0.35) 0 1px, transparent 1px 90px),
      repeating-linear-gradient(90deg, rgba(255,255,255,0.35) 0 1px, transparent 1px 90px);
  }
.map-pin { position: absolute; top: 46%; left: 42%; font-size: 34px; color: #e0403a; text-shadow: 0 2px 4px rgba(0,0,0,0.3); }
.map-card { position: absolute; top: 40px; left: 40px; background: white; padding: 20px 22px; box-shadow: 0 6px 24px rgba(0,0,0,0.18); width: 260px; }
.map-card h4 { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.map-card p { font-size: 13px; color: var(--text-muted); line-height: 1.5; margin-bottom: 10px; }
.map-card .rating { font-size: 13px; color: #333; }
.map-card .rating .stars { color: #f4b400; }
.map-card .icons { position: absolute; top: 20px; right: 20px; display: flex; gap: 8px; }
.map-card .icons span { width: 30px; height: 30px; border-radius: 50%; background: #f0f0f0; display: flex; align-items: center; justify-content: center; font-size: 13px; color: var(--teal); }
.advies-box { background: var(--gray-bg); padding: 60px 50px; display: flex; flex-direction: column; justify-content: flex-start; }
.advies-box h2 { font-size: 26px; font-weight: 800; font-family:"Archivo",sans-serif; color: var(--ink); margin-bottom: 24px; }
.advies-box > p.intro { font-size: 15px; color: var(--text-muted); line-height: 1.7; margin-bottom: 34px; }
.advies-box form { display: flex; flex-direction: column; }
.advies-box input, .advies-box textarea { width: 100%; background: transparent; border: none; border-bottom: 1px solid rgba(0,0,0,0.25); color: var(--text); padding: 10px 0; margin-bottom: 22px; font-size: 14px; outline: none; font-family: inherit; }
.advies-box input::placeholder, .advies-box textarea::placeholder { color: rgba(0,0,0,0.45); }
.advies-box textarea { height: 100px; resize: none; border: 1px solid rgba(0,0,0,0.25); padding: 10px; }
.btn-dark { border: 1px solid var(--dark); color: var(--dark); background: transparent; padding: 12px 28px; font-size: 13px; font-weight: 700; cursor: pointer; align-self: flex-start; }
.btn-dark:hover { background: var(--dark); color: white; }
.footer { background: var(--dark); color: white; padding: 60px; position: relative; overflow: hidden; }
.footer-decor { position: absolute; right: -120px; bottom: -220px; width: 480px; height: 480px; border-radius: 50%; background: var(--light-bg); opacity: 0.95; }
.footer-grid { display: grid; grid-template-columns: 280px 1fr 160px 160px; gap: 40px; margin-bottom: 40px; align-items: start; position: relative; z-index: 1; }
.footer-nav { display: flex; flex-direction: column; position: relative; z-index: 1; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.15); padding-top: 20px; display: flex; justify-content: space-between; font-size: 12px; color: rgba(255,255,255,0.45); position: relative; z-index: 1; }

.intro-section { display: grid; grid-template-columns: 1fr 1fr; min-height: 520px; }
.aluk-section { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; padding: 60px; align-items: center; }
.aluk-left h2 { font-size: 19px; font-weight: 900; text-transform: uppercase; color: var(--dark); margin-bottom: 24px; line-height: 1.3; }
.aluk-left p { font-size: 14.5px; color: var(--text-muted); line-height: 1.75; margin-bottom: 14px; }
.aluk-left p strong { color: var(--text); }
.aluk-right .img-ph { width: 100%; height: 420px; object-fit: cover; display: block; }
.product-img-ph { width: 100%; height: 220px; object-fit: cover; display: block; margin-bottom: 20px; }
.product-card-item p { font-size: 13.5px; color: var(--text-muted); line-height: 1.7; margin-bottom: 12px; }
.btn-productfiche { border: 1px solid var(--dark); color: var(--dark); background: transparent; padding: 9px 18px; font-size: 12px; font-weight: 600; letter-spacing: 0.5px; cursor: pointer; text-transform: uppercase; display: inline-block; margin-top: 6px; }
.inspiratie-grid { display: grid; grid-template-columns: 1fr 0.55fr 0.45fr; gap: 16px; align-items: start; }
.insp-img-big { width: 100%; height: 520px; object-fit: cover; display: block; }
.insp-img-small { width: 100%; height: 250px; object-fit: cover; display: block; }
.insp-text { padding: 10px 0; }
.insp-text .quote-mark { font-size: 42px; color: var(--dark); line-height: 1; margin-bottom: 10px; }
.insp-text blockquote { font-size: 15px; font-weight: 700; color: var(--dark); line-height: 1.5; margin-bottom: 16px; text-align: center; }
.insp-text p { font-size: 13.5px; color: var(--text-muted); line-height: 1.7; }

.hero-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, #aaa 0%, #777 100%); display: flex; align-items: center; justify-content: center; font-size: 14px; color: rgba(255,255,255,0.25); border: 2px dashed rgba(255,255,255,0.15); }
.hero-content p { font-size: 16px; font-weight: 600; margin-bottom: 28px; text-shadow: 0 1px 4px rgba(0,0,0,0.3); }
.btn-outline-white { border: 2px solid white; color: white; background: transparent; padding: 11px 22px; font-size: 13px; font-weight: 700; letter-spacing: 0.5px; cursor: pointer; }
/* INTRO 2 cols *//* VEKA SECTION */.veka-section { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; padding: 60px; align-items: center; }
.veka-left h2 { font-size: 19px; font-weight: 900; text-transform: uppercase; color: var(--dark); margin-bottom: 24px; line-height: 1.3; }
.veka-left p { font-size: 14.5px; color: var(--text-muted); line-height: 1.75; margin-bottom: 14px; }
.veka-left p strong { color: var(--text); }
.veka-right .img-placeholder { width: 100%; height: 380px; object-fit: cover; display: block; }
/* PRODUCTS */.products-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 50px; max-width: 860px; }
.product-img-ph { width: 100%; height: 220px; background: var(--gray-bg); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.product-img-ph img { max-width: 60%; max-height: 80%; object-fit: contain; }
.product-card-item p { font-size: 13.5px; color: var(--text-muted); line-height: 1.7; margin-bottom: 14px; }
/* ACCESSOIRES *//* INSPIRATIE */.nav-links a.active { color: var(--teal); }
.hero-content p { font-size: 16px; font-weight: 600; margin-bottom: 28px; text-shadow: 0 2px 8px rgba(0,0,0,0.5); }
.hero-arrow { padding: 24px 0 0 60px; }
/* FAQ ACCORDION */.faq-section { padding: 80px 60px 90px; max-width: 1100px; margin: 0 auto; }
.faq-category { font-family:"Archivo",sans-serif; color: var(--pine); font-size: 13px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; padding: 40px 0 14px; border-bottom: 2px solid var(--pine); margin-bottom: 6px; }
.faq-section > .faq-category:first-child { padding-top: 0; }
details.faq-item { border-bottom: 1px solid var(--line); }
details.faq-item summary { list-style: none; cursor: pointer; padding: 22px 0; font-size: 16px; font-weight: 600; font-family:"Archivo",sans-serif; color: var(--ink); display: flex; justify-content: space-between; align-items: center; gap: 20px; }
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary .arrow { color: var(--pine); font-size: 16px; flex-shrink: 0; transition: transform 0.2s; }
details.faq-item[open] summary .arrow { transform: rotate(90deg); }
details.faq-item .faq-answer { padding: 0 0 24px; font-size: 14.5px; color: var(--ink-70); line-height: 1.7; max-width: 900px; }
details.faq-item summary:hover { color: var(--pine); }
/* TESTIMONIAL + CTA */.testimonial-section { display: grid; grid-template-columns: 1fr 1fr; margin: 40px 60px 60px; border: 1px solid #ddd; }
.testimonial-left { padding: 40px; display: flex; align-items: center; gap: 24px; background: #f8f8f8; }
.testimonial-avatar { width: 100px; height: 100px; border-radius: 50%; background: linear-gradient(135deg, #8ab, #456); flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 11px; color: rgba(255,255,255,0.5); border: 2px dashed rgba(255,255,255,0.4); text-align: center; overflow: hidden; }
.testimonial-text { font-style: italic; color: var(--text-muted); font-size: 14.5px; line-height: 1.6; }
.testimonial-author { margin-top: 10px; font-style: normal; font-weight: 600; color: var(--dark); font-size: 14px; }
.testimonial-right { background: var(--dark); padding: 40px; display: flex; flex-direction: column; justify-content: center; }
.testimonial-right h3 { color: white; font-size: 20px; font-weight: 900; margin-bottom: 6px; }
.testimonial-right p { color: rgba(255,255,255,0.75); font-size: 14px; margin-bottom: 24px; }
.cta-buttons { display: flex; gap: 14px; margin-bottom: 24px; }
.btn-dark-white { border: 2px solid white; color: white; background: transparent; padding: 11px 22px; font-size: 13px; font-weight: 700; cursor: pointer; }
.btn-dark-white:hover { background: white; color: var(--dark); }
.google-rating { display: flex; align-items: center; gap: 14px; }
.google-thumb { width: 50px; height: 50px; border-radius: 50%; background: rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; font-size: 20px; }
.stars { color: #f4b400; font-size: 18px; letter-spacing: 1px; }
.rating-text { color: rgba(255,255,255,0.8); font-size: 13px; }
.rating-text strong { color: white; font-size: 15px; }
.google-text { color: #4285f4; font-weight: 700; }

.cta-banner { background: var(--dark); padding: 50px 60px; margin: 0 60px 60px; text-align: center; }
.cta-banner h3 { color: white; font-size: 22px; font-weight: 900; margin-bottom: 8px; }
.cta-banner p { color: rgba(255,255,255,0.75); font-size: 14px; margin-bottom: 22px; }
.cta-banner .cta-buttons { display: flex; justify-content: center; gap: 14px; }
body { font-family: "Work Sans", sans-serif; color: var(--text); font-size: 15px; }
/* ── TOP BAR ── */.lang { font-weight: 700; }
.klantenzone { display: flex; align-items: center; gap: 6px; font-weight: 600; }
.klantenzone svg { width: 18px; height: 18px; }
/* ── MAIN NAV ── */.logo-icon svg { width: 32px; height: 32px; fill: white; }
/* ── PRODUCT NAV ── *//* Seulement les liens directs de la barre (pas ceux du dropdown) *//* ── DROPDOWNS ── */.product-nav > .dropdown > .dropdown-menu > a {
    display: block;
    padding: 13px 22px;
    font-size: 14px;
    font-weight: 500;
    font-weight: 400;
    color: #333;
    letter-spacing: 0;
    background: white;
    border-bottom: 1px solid #eeeeee;
  }

.hero-img {
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.75;
  }
.hero-placeholder {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, #2a3a36 0%, #4a6060 100%);
    display: flex; align-items: center; justify-content: center;
    flex-direction: column; gap: 10px;
  }
.hero-placeholder .placeholder-label {
    color: rgba(255,255,255,0.5);
    font-size: 16px;
    border: 2px dashed rgba(255,255,255,0.3);
    padding: 20px 40px;
    border-radius: 6px;
    text-align: center;
  }
.hero-content {
    position: absolute;
    bottom: 80px;
    left: 60px;
    color: white;
  }
.hero-content h1 {
    font-size: 36px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 10px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
  }
/* ── SECTION: INFO ── */.section-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 320px;
  }
.info-left { padding: 60px 60px 60px 60px; }
.info-left .section-icon {
    width: 70px; height: 70px;
    margin-bottom: 30px;
  }
.info-left h2 {
    font-size: 20px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--dark);
    margin-bottom: 18px;
  }
.info-left h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--teal);
    margin-bottom: 12px;
  }
.info-left p { color: var(--text-muted); line-height: 1.7; font-size: 14.5px; }
.info-right {
    background: var(--light-bg);
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    text-align: right;
    position: relative;
  }
.info-right h3 { font-size: 16px; font-weight: 700; color: var(--teal); font-style: italic; margin-bottom: 14px; }
.info-right p { color: var(--text-muted); line-height: 1.7; font-size: 14.5px; max-width: 420px; }
.circle-deco {
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 220px;
    height: 220px;
    background: #d0e8ef;
    border-radius: 50%;
    opacity: 0.5;
    z-index: 0;
  }
/* ── WAARDEN SECTION ── */.section-waarden {
    background: var(--dark);
    padding: 60px 60px;
    color: white;
  }
.section-waarden h2 {
    font-size: 20px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 40px;
  }
.waarden-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
  }
.waarde-item { display: flex; flex-direction: column; align-items: flex-start; }
.waarde-icon {
    width: 50px; height: 60px;
    margin-bottom: 18px;
    opacity: 0.9;
  }
.waarde-item p { font-size: 14px; font-weight: 700; line-height: 1.5; }
/* ── ASSORTIMENT ── */.section-assortiment { padding: 60px; }
.section-assortiment h2 {
    font-size: 20px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--dark);
    margin-bottom: 14px;
  }
.section-assortiment p {
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 700px;
    margin-bottom: 34px;
    font-size: 14.5px;
  }
.product-carousel {
    position: relative;
  }
.product-track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
.product-track::-webkit-scrollbar { display: none; }
.product-card {
    position: relative;
    flex: 0 0 calc(25% - 12px);
    height: 220px;
    overflow: hidden;
    cursor: pointer;
    scroll-snap-align: start;
  }
.product-card img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
  }
.product-card:hover img { transform: scale(1.03); }
.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 24px;
  }
.carousel-arrow-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--dark);
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
.carousel-arrow-btn svg { width: 26px; height: 26px; }
.carousel-arrow-btn:hover { opacity: 0.6; }


/* ── TROEVEN ── */.section-troeven {
    position: relative;
    height: 460px;
    overflow: hidden;
    background: #2a3a36;
  }
.troeven-bg {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, #2a3a36 0%, #3d5550 100%);
    display: flex; align-items: center; justify-content: center;
    font-size: 14px;
    color: rgba(255,255,255,0.3);
    border: 2px dashed rgba(255,255,255,0.15);
  }
.troeven-card {
    position: absolute;
    top: 50%;
    right: 80px;
    transform: translateY(-50%);
    background: white;
    padding: 40px;
    width: 380px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  }
.troeven-card h3 {
    font-size: 18px;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 24px;
  }
.troef-item {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
  }
.troef-icon {
    width: 34px; height: 34px;
    flex-shrink: 0;
  }
.troef-item p { font-size: 14px; color: var(--text); }
/* ── REALISATIES ── */.section-realisaties { padding: 60px; }
.section-realisaties h2 {
    font-size: 20px; font-weight: 900; text-transform: uppercase;
    color: var(--dark); margin-bottom: 28px;
  }
.realisaties-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 50px;
  }
.realisatie-card { position: relative; height: 280px; overflow: hidden; cursor: pointer; }
.realisatie-placeholder {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, #8ab0b0, #5a8080);
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; color: rgba(255,255,255,0.6);
    border: 2px dashed rgba(255,255,255,0.3);
    transition: transform 0.3s;
  }
.realisatie-card:hover .realisatie-placeholder { transform: scale(1.03); }
.realisatie-tags {
    position: absolute; bottom: 12px; left: 12px;
    display: flex; gap: 6px; flex-wrap: wrap;
  }
.tag {
    background: var(--dark); color: white;
    font-size: 11px; font-weight: 700;
    padding: 4px 10px; text-transform: uppercase;
  }
/* ── TESTIMONIAL + CTA ── */.testimonial-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: 0 60px 60px;
    border: 1px solid var(--border);
  }
.testimonial-avatar {
    width: 80px; height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8ab, #456);
    flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 11px; color: rgba(255,255,255,0.6);
    border: 2px dashed rgba(255,255,255,0.4);
    text-align: center;
  }
.cta-buttons { display: flex; gap: 14px; }
/* ── FOOTER ── */.footer-social a:hover { color: white; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: rgba(255,255,255,0.45);
  }
.footer-bottom a { color: rgba(255,255,255,0.45); }
.footer-bottom a:hover { color: white; }
/* ── BOTTOM BAR (blanc) ── */.bottom-bar {
    background: #f2f2f2;
    padding: 16px 60px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    border-top: 1px solid #ddd;
  }
.bottom-bar a:hover { color: var(--teal); text-decoration: underline; }
/* ── MODAL ALGEMENE VOORWAARDEN ── */.modal-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.55);
    z-index: 9999;
    justify-content: center;
    align-items: flex-start;
    padding: 40px 20px;
    overflow-y: auto;
  }
.modal-overlay.open { display: flex; }
.modal-box {
    background: white;
    max-width: 860px;
    width: 100%;
    padding: 50px 60px;
    position: relative;
    margin: auto;
  }
.modal-close {
    position: absolute;
    top: 18px; right: 24px;
    font-size: 26px;
    cursor: pointer;
    color: #555;
    background: none;
    border: none;
    line-height: 1;
  }
.modal-close:hover { color: var(--dark); }
.modal-box h2 {
    font-size: 18px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--dark);
    margin-bottom: 20px;
  }
.modal-box p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 14px;
  }
.modal-box ol {
    padding-left: 22px;
    margin-bottom: 14px;
  }
.modal-box ol li {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 10px;
  }
.modal-box h3 {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
    margin: 20px 0 8px;
    text-transform: uppercase;
  }
.cta-banner { background: var(--dark); padding: 50px 60px; margin: 40px 0; text-align: center; }
:root {
    --ink: #12211D;
    --ink-70: rgba(18,33,29,0.68);
    --ink-45: rgba(18,33,29,0.45);
    --paper: #FFFFFF;
    --paper-2: #FAFAF8;
    --pine: #22B24A;
    --pine-light: #3FCB63;
    --brass: #A67C43;
    --mist: #F5F5F3;
    --line: rgba(18,33,29,0.14);
    --line-on-dark: rgba(245,243,238,0.22);
  }
html { scroll-behavior: smooth; }
body {
    font-family: "Work Sans", sans-serif;
    color: var(--ink);
    background: var(--paper);
    font-size: 16px;
    line-height: 1.6;
  }
h1, h2, h3, h4 {
    font-family: "Archivo", sans-serif;
    font-weight: 800;
    letter-spacing: -0.01em;
    line-height: 1.08;
  }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }
/* ============ NAV ============ */.nav {
    position: sticky; top: 0; z-index: 100;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
  }
.nav-links { display: flex; align-items: center; }
.nav-links > a {
    position: relative;
    font-size: 14.5px; font-weight: 600; color: var(--ink);
    padding: 6px 0;
    margin-right: 34px;
  }
.nav-links > a::after {
    content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px;
    background: var(--pine); transition: right 0.22s ease;
  }
.nav-links > a:hover::after, .nav-links > a.active::after { right: 0; }
.nav-links > a.active { color: var(--pine); }
.nav-cta {
    display: flex; align-items: center; gap: 22px; margin-left: 36px; padding-left: 30px;
    border-left: 1px solid var(--line);
  }
.btn-primary {
    background: var(--pine); color: var(--paper); font-size: 13.5px; font-weight: 600;
    padding: 13px 22px; border: none; border-radius: 0; letter-spacing: 0.01em;
    transition: background 0.15s;
  }
.btn-primary:hover { background: var(--pine); }
.lang-switch { display: flex; align-items: center; gap: 5px; font-size: 12.5px; font-weight: 600; color: var(--ink-45); }
.lang-switch a.active { color: var(--ink); }
.lang-switch a:hover { color: var(--pine); }
/* ============ FOOTER ============ */footer { background: var(--pine); color: var(--paper); padding-top: 80px; }
.footer-grid {
    display: flex; gap: 40px;
    padding-bottom: 70px; border-bottom: 1px solid var(--line-on-dark);
  }
.footer-grid > div { flex: 1 1 0; }
.footer-brand { flex: 1.4 1 0; }
.footer-brand .brand-name { color: var(--paper); }
.footer-brand .brand-name em { color: var(--paper); }
.footer-addr { margin-top: 22px; font-size: 14.5px; color: var(--paper); line-height: 1.85; }
.footer-addr a { color: var(--paper); font-weight: 600; }
.footer-col h4 {
    font-family: "Archivo", sans-serif; font-size: 12.5px; font-weight: 700; letter-spacing: 0.04em;
    color: var(--paper); margin-bottom: 18px; text-transform: uppercase;
  }
.footer-col a { display: block; font-size: 14.5px; color: var(--paper); margin-bottom: 13px; }
.footer-col a:hover { color: var(--paper); }
.footer-form input, .footer-form textarea {
    width: 100%; background: transparent; border: none; border-bottom: 1px solid var(--line-on-dark);
    color: var(--paper); font-family: inherit; font-size: 14.5px; padding: 10px 0; margin-bottom: 16px;
  }
.footer-form input::placeholder, .footer-form textarea::placeholder { color: rgba(245,243,238,0.75); }
.footer-form textarea { resize: none; height: 70px; }
.footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    padding: 26px 0; font-size: 13px; color: var(--paper);
  }
.footer-bottom a { color: var(--paper); }

/* INTRO TEXT */.intro-text { padding: 40px 60px 60px; max-width: 950px; }
.intro-text h2 { font-size: 22px; font-weight: 900; color: var(--dark); margin-bottom: 18px; }
.intro-text p { font-size: 14.5px; color: var(--text-muted); line-height: 1.8; margin-bottom: 16px; }
.intro-text p a { color: var(--teal); text-decoration: underline; }
/* TWO-COL SECTIONS */.twocol { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; padding: 60px; position: relative; overflow: hidden; }
.twocol .col-img { position: relative; z-index: 1; }
.twocol .col-img-ph { width: 100%; height: 420px; background: linear-gradient(135deg, #8a8a8a, #444); display: flex; align-items: center; justify-content: center; font-size: 13px; color: rgba(255,255,255,0.4); border: 2px dashed rgba(255,255,255,0.2); }
.twocol .col-img-real { width: 100%; height: 420px; object-fit: cover; display: block; }
.twocol .col-text { position: relative; z-index: 1; }
.twocol .col-text h2 { font-size: 21px; font-weight: 900; color: var(--dark); margin-bottom: 18px; }
.twocol .col-text p { font-size: 14.5px; color: var(--text-muted); line-height: 1.8; margin-bottom: 16px; }
.twocol .col-text p a { color: var(--teal); text-decoration: underline; }
.decor-blob { position: absolute; background: var(--light-bg); border-radius: 50%; z-index: 0; }
.testimonial-section { display: grid; grid-template-columns: 1fr 1fr; margin: 0 60px 60px; border: 1px solid #ddd; }

.hero-content { position: absolute; bottom: 60px; left: 60px; color: white; max-width: 900px; }
.hero-content h1 { font-size: 32px; font-weight: 900; text-transform: uppercase; margin-bottom: 10px; text-shadow: 0 2px 8px rgba(0,0,0,0.5); }
.hero-content p { font-size: 16px; font-weight: 600; margin-bottom: 24px; text-shadow: 0 2px 8px rgba(0,0,0,0.5); }
.intro-text ul { padding-left: 20px; margin-top: 10px; }
.intro-text li { font-size: 14.5px; color: var(--text-muted); line-height: 1.8; margin-bottom: 4px; }
/* IMAGE + OVERLAY CARD (troeven) */.troeven-wrap { position: relative; margin: 0 60px 60px; }
.troeven-img { height: 620px; width: 100%; object-fit: cover; display: block; background: linear-gradient(135deg, #cbb896, #6a5c48); }
.troeven-card { position: absolute; top: 60px; right: 0; background: white; padding: 40px 44px; box-shadow: 0 10px 30px rgba(0,0,0,0.18); width: 380px; }
.troeven-card h3 { font-size: 19px; font-weight: 900; color: var(--dark); margin-bottom: 24px; text-transform: uppercase; }
.troeven-item { display: flex; align-items: center; gap: 16px; margin-bottom: 22px; }
.troeven-item:last-child { margin-bottom: 0; }
.troeven-item svg { flex-shrink: 0; width: 34px; height: 34px; }
.troeven-item span { font-size: 14.5px; color: var(--text); }
.twocol { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; padding: 60px; position: relative; overflow: hidden; }
.twocol .col-img { height: 100%; min-height: 500px; }
.twocol .col-img-ph { width: 100%; height: 100%; min-height: 500px; background: linear-gradient(135deg, #8a8a8a, #444); display: flex; align-items: center; justify-content: center; font-size: 13px; color: rgba(255,255,255,0.4); border: 2px dashed rgba(255,255,255,0.2); }
.twocol .col-img-real { width: 100%; height: 100%; min-height: 500px; object-fit: cover; display: block; }
.twocol .col-text h2 { font-size: 22px; font-weight: 900; color: var(--dark); margin-bottom: 18px; }
.twocol .col-text p { font-size: 14.5px; color: var(--text-muted); line-height: 1.8; margin-bottom: 14px; }
.twocol .col-text ul { padding-left: 20px; margin: 10px 0 20px; }
.twocol .col-text li { font-size: 14.5px; color: var(--text-muted); line-height: 1.8; margin-bottom: 6px; }
.twocol .col-text h4 { font-size: 15px; color: var(--dark); font-weight: 700; margin: 4px 0; }
.testimonial-section { display: grid; grid-template-columns: 1fr 1fr; margin: 60px; border: 1px solid #ddd; }
.testimonial-left { padding: 40px; display: flex; align-items: center; gap: 30px; background: #f8f8f8; }
.testimonial-badge { width: 130px; height: 130px; border-radius: 50%; background: white; box-shadow: 0 4px 14px rgba(0,0,0,0.1); flex-shrink: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 10px; }
.testimonial-badge .badge-icon { font-size: 26px; font-weight: 900; color: #c9962f; }
.testimonial-badge .badge-name { font-size: 13px; font-weight: 800; color: #c9962f; margin-top: 4px; }
.testimonial-badge .badge-sub { font-size: 8px; color: #999; letter-spacing: 0.5px; margin-top: 2px; }
.testimonial-text { font-style: italic; color: var(--text-muted); font-size: 14px; line-height: 1.65; }
.testimonial-author { margin-top: 12px; font-style: normal; font-weight: 600; color: var(--dark); font-size: 14px; }
.testimonial-nav { display: flex; gap: 20px; margin-top: 14px; }
.testimonial-nav a { color: var(--teal); font-size: 16px; }

.cta-banner { background: var(--dark); padding: 50px 60px; margin: 60px; text-align: center; }
.hero-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, #2a2a2a 0%, #555 100%); display: flex; align-items: center; justify-content: center; font-size: 14px; color: rgba(255,255,255,0.2); border: 2px dashed rgba(255,255,255,0.1); }
.hero-content p { font-size: 16px; font-weight: 600; margin-bottom: 28px; text-shadow: 0 1px 4px rgba(0,0,0,0.4); }
.intro-section { display: grid; grid-template-columns: 1fr 1fr; min-height: 500px; }
/* ALUK SECTION */.aluk-right .img-placeholder { width: 100%; height: 380px; object-fit: cover; display: block; }
/* PRODUCTS SECTION */.btn-sm { border: 2px solid white; color: white; background: transparent; padding: 9px 22px; font-size: 12px; font-weight: 700; letter-spacing: 0.5px; cursor: pointer; margin-top: 10px; }
.hero-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, #222 0%, #4a5a4a 100%); display: flex; align-items: center; justify-content: center; font-size: 14px; color: rgba(255,255,255,0.2); border: 2px dashed rgba(255,255,255,0.1); }
.veka-right .img-ph { width: 100%; height: 380px; object-fit: cover; display: block; }

/* ======================================================================
   MOBILE — bloc unique et prioritaire (consolidé pour fiabilité maximale)
   ====================================================================== */
@media (max-width: 900px) {
  /* Nav */
  .nav-inner { height: auto !important; min-height: 88px; flex-wrap: wrap !important; padding-top: 18px; padding-bottom: 18px; }
  .nav-toggle { display: flex !important; }
  .nav-call-mobile { display: flex !important; }
  .nav-right {
    width: 100% !important; order: 3 !important;
    background: var(--paper) !important;
    flex-direction: column !important; align-items: stretch !important;
    max-height: 0 !important; overflow: hidden !important; margin-left: 0 !important;
    transition: max-height 0.3s ease;
    position: static !important;
  }
  .nav-right.open { max-height: 600px !important; margin-top: 18px; border-top: 1px solid var(--line); }
  .nav-links, .nav-links2 { display: flex !important; flex-direction: column !important; align-items: flex-start !important; width: 100% !important; padding-top: 16px; }
  .nav-links > a, .nav-links2 > a { margin-right: 0 !important; margin-bottom: 16px; width: 100%; white-space: normal !important; }
  .nav-cta, .nav-cta2 { display: flex !important; flex-direction: column !important; align-items: flex-start !important; gap: 14px; width: 100%; padding: 16px 0 4px; margin-left: 0 !important; border-left: none; border-top: 1px solid var(--line); }
  .nav-cta .btn-primary, .nav-cta2 .btn-primary2 { display: inline-block !important; width: 100%; text-align: center; box-sizing: border-box; }

  /* Hero */
  .hero { flex-direction: column !important; height: auto !important; }
  .hero-img-col { height: 320px !important; order: -1 !important; width: 100% !important; }
  .hero-copy { padding: 48px 24px !important; width: 100% !important; }

  /* Sections generales */
  .statement-grid { flex-direction: column !important; gap: 32px; }
  .values-inner { flex-direction: column !important; gap: 32px; }
  .value-item { border-left: none !important; padding: 0; }
  .range-head { flex-direction: column !important; align-items: flex-start !important; gap: 16px; }
  .range-head h2, .range-head p { max-width: 100% !important; }
  .range-card, .range-card:nth-child(1), .range-card:nth-child(2), .range-card:nth-child(3), .range-card:nth-child(4), .range-card:nth-child(5), .range-card:nth-child(6) { flex-basis: 100% !important; height: 260px; }
  .craft { flex-direction: column !important; }
  .craft-img { min-height: 320px; width: 100% !important; }
  .craft-copy { padding: 56px 24px; width: 100% !important; }
  .projects-grid { flex-direction: column !important; }
  .journal-grid { flex-direction: column !important; }
  .spec-card { flex: 1 1 100% !important; }
  .testi-split { flex-direction: column !important; }
  .contact-section { grid-template-columns: 1fr !important; }
  .testimonial-section { grid-template-columns: 1fr !important; }
  .product-card { flex: 0 0 calc(50% - 8px); }
  .footer-grid { display: flex !important; flex-direction: column !important; grid-template-columns: none !important; gap: 32px !important; }
  .footer-grid > div { width: 100% !important; min-width: 0 !important; }
  .footer-grid > div { flex: 1 1 45%; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .twocol { grid-template-columns: 1fr !important; }
  .troeven-card { position: static; width: auto; margin-top: 20px; }
  .fen-overview { grid-template-columns: 1fr !important; }
  .footer2-grid { flex-direction: column !important; gap: 32px; }
  .footer2-grid > div { min-width: 0; width: 100%; }
  .assortiment-card { flex: 0 0 50%; }

  /* Empêche tout débordement horizontal résiduel */
  body { overflow-x: hidden; }
  .wrap { padding: 0 20px !important; }
}

@media (max-width: 560px) {
  .assortiment-card { flex: 0 0 85%; }
  .product-card { flex: 0 0 85%; }
}

@media (min-width: 901px) {
  .hero-copy-home { justify-content: flex-end !important; padding-bottom: 80px !important; }
}
