/*
Theme Name: BlankSlate Child
Template: blankslate
Version: 1.0
*/

:root{
    --brown-dark:#6a2b1e;
    --brown:#8f3a23;
    --brown-light:#b5522d;
    --accent:#f15a24;
    --bg:#f4ebe6;
    --line:#d8c4b9;
    --text:#4b2a20;
    --muted:#6a3a2b;
    --card:#ffffff;
    --shadow:0 12px 30px rgba(0,0,0,.08);
    --shadow-soft:0 8px 24px rgba(0,0,0,.06);
    --radius:16px;
}

*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{font-family:'Montserrat',sans-serif;background:var(--bg);color:var(--text)}
a{color:inherit}
.container{width:1180px;max-width:95%;margin:0 auto}

/* Header */

.lang-toggle{display:flex;align-items:center;gap:10px;padding:6px 10px;border:1px solid rgba(255,255,255,.25);border-radius:999px;background:rgba(0,0,0,.12)}
.lang-btn{background:transparent;border:none;color:#fff;font-weight:700;letter-spacing:.5px;cursor:pointer;opacity:.75}
.lang-btn.is-active{opacity:1;text-decoration:underline}
.lang-sep{opacity:.5}
@media(max-width:992px){ .lang-toggle{order:-1} }

header{
    position:sticky; top:0; z-index:50;
    background:linear-gradient(90deg,#5c2317,#a34728); color:#fff;
    box-shadow:0 10px 30px rgba(0,0,0,.15);
}
nav{display:flex;justify-content:space-between;align-items:center;padding:14px 0; gap:16px}
.logo{display:flex;align-items:center;gap:14px;white-space:nowrap}
.logo-mark{display:flex;gap:6px}
.logo-mark span{display:block;width:22px;height:6px;transform:skewX(-25deg);border-radius:2px}
.logo-mark span:nth-child(1){background:#f15a24}
.logo-mark span:nth-child(2){background:#d94d1d}
.logo-mark span:nth-child(3){background:#ffffff}
.logo-text{font-weight:800;font-size:24px;letter-spacing:2px;color:#ffffff}

.menu{display:flex;align-items:center;gap:26px}
.menu a{color:#fff;text-decoration:none;font-weight:500;font-size:14px;opacity:.95}
.menu a:hover{opacity:1}

.header-actions{display:flex;align-items:center;gap:10px}
.header-actions .btn{padding:10px 16px;font-size:13px;border-radius:10px;margin:0}
.burger{display:none; width:44px;height:44px;border-radius:12px;border:1px solid rgba(255,255,255,.25);
    background:rgba(0,0,0,.08); color:#fff; cursor:pointer;
}
.burger:active{transform:translateY(1px)}
.burger-lines{display:flex;flex-direction:column;gap:6px;align-items:center;justify-content:center;height:100%}
.burger-lines span{display:block;width:18px;height:2px;background:#fff;border-radius:2px;opacity:.95}

/* Mobile menu panel */

.mobile-panel{
    display:none; position:fixed; inset:0; z-index:100;
}
.mobile-panel:target{display:block;}
.mobile-panel .backdrop{
    position:absolute; inset:0; background:rgba(0,0,0,.45);
}
.mobile-panel .sheet{
    position:absolute; top:0; right:0; height:100%; width:min(360px, 90vw);
    background:linear-gradient(180deg,#5c2317,#4a1d13); color:#fff;
    padding:18px 18px 22px;
    box-shadow: -18px 0 40px rgba(0,0,0,.35);
    transform:translateX(0);
}
.mobile-panel .sheet header{
    position:static; box-shadow:none; background:transparent;
}
.mobile-panel .sheet .row{display:flex;align-items:center;justify-content:space-between;gap:12px}
.close{
    width:44px;height:44px;border-radius:12px;border:1px solid rgba(255,255,255,.25);
    background:rgba(255,255,255,.06); color:#fff; cursor:pointer; font-size:18px;
}
.mobile-links{display:flex;flex-direction:column;gap:10px;margin-top:10px}
.mobile-links a{
    text-decoration:none; padding:14px 14px; border-radius:14px;
    background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.12);
    font-weight:600;
}
.mobile-links a:active{transform:translateY(1px)}
.mobile-cta{display:flex;flex-direction:column;gap:10px;margin-top:14px}
.mobile-cta .btn{width:100%; text-align:center; margin:0;}

/* Buttons */
.btn{
    display:inline-block; padding:14px 30px; border-radius:12px;
    text-decoration:none; font-weight:700; font-size:15px;
    transition:.2s; border:1px solid transparent;
}
.btn-primary{background:var(--accent);color:#fff;box-shadow:0 10px 24px rgba(0,0,0,.18)}
.btn-primary:hover{filter:brightness(.95)}
.btn-secondary{
    background:rgba(255,255,255,.08); color:#fff;
    border-color:rgba(255,255,255,.22);
}
.btn-secondary:hover{background:rgba(255,255,255,.12)}
.btn-dark{
    background:#5a2418; color:#fff;
}
.btn-dark:hover{filter:brightness(.95)}

/* Hero */
.hero{
    position:relative; padding:92px 0 86px; color:#fff;
}
.hero::before{
    content:""; position:absolute; inset:0;
    background:linear-gradient(90deg,rgba(90,35,23,.96),rgba(181,82,45,.82));
}
.hero-grid{
    position:relative; z-index:2;
    display:grid; grid-template-columns: 1.05fr .95fr; gap:34px; align-items:center;
}
.hero h1{font-size:46px;line-height:1.12;font-weight:800;margin-bottom:14px}
.hero p{font-size:17px;line-height:1.6;color:#f3e6df}
.hero-bullets{display:flex;flex-wrap:wrap;gap:10px;margin:18px 0 26px}
.pill{
    display:inline-flex;align-items:center;gap:8px;
    background:rgba(0,0,0,.18); border:1px solid rgba(255,255,255,.18);
    padding:10px 12px;border-radius:999px;font-weight:600;font-size:13px
}
.pill svg{flex:0 0 auto}
.hero-cta{display:flex;flex-wrap:wrap;gap:12px}
.hero-note{
    margin-top:14px; font-size:13px; opacity:.92; color:#f3e6df
}

/* Lead card (right) */
.lead-card{
    background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.18);
    border-radius:18px; padding:22px; backdrop-filter: blur(6px);
    box-shadow:0 22px 50px rgba(0,0,0,.18);
}
.lead-card h3{font-size:16px; font-weight:800; margin-bottom:10px}
.lead-grid{display:grid; grid-template-columns:1fr 1fr; gap:10px}
.field{
    display:flex; flex-direction:column; gap:6px;
}
label{font-size:12px; opacity:.95}
input, select, textarea{
    width:100%; padding:12px 12px; border-radius:12px;
    border:1px solid rgba(255,255,255,.2);
    background:rgba(0,0,0,.18); color:#fff;
    outline:none;
}
input::placeholder, textarea::placeholder{color:rgba(255,255,255,.72)}
textarea{height:92px; resize:vertical}
.lead-actions{display:flex; gap:10px; margin-top:10px}
.lead-actions .btn{width:100%; text-align:center; padding:12px 14px; font-size:14px}
.small p{font-size:12px; opacity:.9; margin-top:8px; color:#f3e6df}

/* Sections */
.section{padding:78px 0}
.section.center{text-align:center}
.kicker{
    display:inline-block; font-weight:800; letter-spacing:.8px;
    color:var(--brown-dark); opacity:.95; font-size:12px;
    text-transform:uppercase;
    background:#ead8cf; border:1px solid var(--line);
    padding:8px 12px; border-radius:999px;
}
.section h2{
    font-size:32px; font-weight:800; color:var(--brown-dark);
    margin:14px 0 14px;
}
.section .sub{
    max-width:860px; margin:0 auto; color:var(--muted); line-height:1.65;
}
.grid-4{display:grid; grid-template-columns:repeat(4,1fr); gap:18px; margin-top:26px}
.grid-3{display:grid; grid-template-columns:repeat(3,1fr); gap:18px; margin-top:26px}
.card{
    background:var(--card); border-radius:var(--radius);
    box-shadow:var(--shadow-soft); padding:22px;
}
.card h3{font-size:18px; font-weight:800; margin-bottom:8px; color:#5a2418}
.card p{color:var(--muted); line-height:1.55; font-size:14px}

.stat{
    background:#fff; border-radius:16px; padding:18px;
    box-shadow:var(--shadow-soft);
    border:1px solid rgba(0,0,0,.04);
}
.stat b{display:block; font-size:22px; color:var(--brown-dark)}
.stat span{color:var(--muted); font-size:13px}

/* Problem -> Solution */
.split{
    display:grid; grid-template-columns:1fr 1fr; gap:22px; margin-top:26px;
}
.list{
    display:flex; flex-direction:column; gap:12px; margin-top:14px
}
.li{
    display:flex; gap:12px; align-items:flex-start;
    background:#fff; border-radius:14px; padding:14px 14px;
    box-shadow:var(--shadow-soft);
}
.badge{
    width:28px;height:28px;border-radius:10px; display:grid; place-items:center;
    font-weight:800; color:#fff; flex:0 0 auto;
}
.badge.bad{background:#a34728}
.badge.good{background:var(--accent)}
.li div{font-size:14px; color:var(--muted); line-height:1.5}
.li b{color:var(--text)}

/* Products */
.products-head{
    display:flex; align-items:flex-end; justify-content:space-between; gap:16px;
    flex-wrap:wrap;
}
.toggle{
    display:flex; gap:8px; background:#ead8cf; border:1px solid var(--line);
    padding:6px; border-radius:999px;
}
.toggle button{
    border:none; background:transparent; cursor:pointer;
    padding:10px 14px; border-radius:999px;
    font-weight:800; color:var(--brown-dark); font-size:13px;
}
.toggle button.active{background:#fff; box-shadow:var(--shadow-soft)}

.prod-cards{display:grid; grid-template-columns:repeat(3,1fr); gap:18px; margin-top:18px}
.prod{
    background:#fff; border-radius:18px; padding:22px; box-shadow:var(--shadow);
    position:relative; overflow:hidden;
}
.prod:before{
    content:""; position:absolute; inset:auto -60px -60px auto;
    width:180px; height:180px; border-radius:999px;
    background:rgba(241,90,36,.10);
}
.prod h3{font-size:18px; font-weight:900; color:#5a2418; margin-bottom:6px; position:relative}
.prod .tag{
    display:inline-flex; align-items:center; gap:8px;
    background:#f7eee9; border:1px solid var(--line);
    padding:8px 10px; border-radius:999px;
    font-size:12px; font-weight:800; color:var(--brown-dark);
    margin:8px 0 12px; position:relative;
}
.prod ul{list-style:none; display:flex; flex-direction:column; gap:10px; position:relative}
.prod li{font-size:14px; color:var(--muted)}
.prod li b{color:var(--text)}
.prod .btn{margin-top:14px; padding:12px 14px; font-size:14px; border-radius:12px}
.prod .btn{display:inline-block}
.table-wrap{
    margin-top:18px; overflow:auto; border-radius:16px;
    border:1px solid rgba(0,0,0,.06);
    background:#fff; box-shadow:var(--shadow-soft);
}
table{width:100%; border-collapse:collapse; min-width:720px}
th,td{padding:14px 14px; text-align:left; border-bottom:1px solid rgba(0,0,0,.06); font-size:14px}
th{background:#f7eee9; color:var(--brown-dark); font-weight:900}
tr:last-child td{border-bottom:none}

/* Projects */
.project{
    display:grid; grid-template-columns:1.1fr .9fr; gap:22px;
    background:linear-gradient(90deg,#5c2317,#a34728); color:#fff;
    padding:22px; border-radius:18px; align-items:center;
    box-shadow:0 18px 40px rgba(0,0,0,.18);
}
.project img{width:100%; border-radius:14px; height:320px; object-fit:cover}
.project-content h3{font-size:22px; margin-bottom:10px; font-weight:900}
.project-content p{margin-bottom:10px; font-size:14px; color:#f3e6df; line-height:1.6}
.project-content .btn{margin-top:6px}

/* CTA band */
.cta-band{
    background:#fff; border-radius:22px; padding:26px;
    box-shadow:var(--shadow);
    display:flex; align-items:center; justify-content:space-between; gap:18px;
    border:1px solid rgba(0,0,0,.06);
}
.cta-band h3{font-size:20px; color:var(--brown-dark); font-weight:900}
.cta-band p{color:var(--muted); margin-top:6px; line-height:1.55; font-size:14px}
.cta-band .btn{white-space:nowrap}

/* Footer */
.footer-top{background:#5c2317;color:#fff;padding:40px 0;text-align:center;margin-top:70px}
.footer-top h3{font-weight:900}
.footer-bottom{background:#4a1d13;color:#fff;text-align:center;padding:16px;font-size:13px}

/* Sticky mobile CTA */
.sticky-cta{
    position:fixed; left:0; right:0; bottom:0; z-index:60;
    padding:10px 12px; background:rgba(244,235,230,.9); backdrop-filter: blur(8px);
    border-top:1px solid rgba(0,0,0,.08);
    display:none;
}
.sticky-cta .btn{width:100%; text-align:center; border-radius:16px; padding:14px 16px}
ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
/* Responsive */
@media (max-width: 1060px){
    .hero-grid{grid-template-columns:1fr; gap:18px}
    .lead-card{max-width:640px}
    .grid-4{grid-template-columns:repeat(2,1fr)}
    .split{grid-template-columns:1fr}
    .prod-cards{grid-template-columns:1fr}
    .project{grid-template-columns:1fr}
    .project img{height:260px}
    .cta-band{flex-direction:column; align-items:flex-start}
    .cta-band .btn{width:100%; text-align:center}
    .menu{display:none}
    .burger{display:block}
    .header-actions{display:none}

}

@media (max-width: 520px){
    nav{padding:12px 0}
    .logo-text{font-size:20px}
    .hero{padding:72px 0 74px}
    .hero h1{font-size:28px}
    .hero p{font-size:14px}
    .hero-cta .btn{width:100%; text-align:center}
    .hero-bullets{gap:8px}
    .pill{font-size:12px; padding:9px 11px}
    .section{padding:56px 0}
    .section h2{font-size:24px}
    .grid-4,.grid-3{grid-template-columns:1fr}
    .lead-grid{grid-template-columns:1fr}
    .sticky-cta{display:block}
    .small p{font-size:12px; opacity:.9; margin-top:8px; color:#f3e6df}

}

.lang-switcher img,
.lang-switcher .wpm-flag,
.lang-switcher [class*="flag"] {
    display: none !important;
}

.lang-switcher {
    display: inline-block;
    gap:10px;
    padding:6px 10px;
    border:1px solid rgba(255,255,255,.25);
    border-radius:999px;
    background:rgba(0,0,0,.12)
}

.lang-switcher ul {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 8px;
    color: white;
}

.lang-switcher li:not(:last-child)::after {
    content: "|";
    margin-left: 8px;
    color: rgba(255,255,255,0.6);
}

.lang-switcher a {
    text-decoration: none;
    color: #fff!important;
    font-weight: 700;
    letter-spacing: .5px;
    cursor: pointer;
    opacity: .75;
    font-size: 13px;
    font-family: Arial;
}

.wpm-switcher-list li.active>span {
    opacity: 1;
    color: #fff;
    text-decoration: underline;
    font-weight: 700;
    font-family: Arial;
    font-size: 14px;
}
.desktop-none{
    display:none;
}
@media (max-width: 1060px){
    .desktop-none {
        display: block;
    }
    .close {
        align-items: center;
        justify-content: center;
        display: flex;
    }
    .sticky-cta {
        z-index: 10;
    }

}
.mobile-links a {
    display: block;
}
@media (max-width: 400px){
    .logo-text {
        font-size: 14px;
    }
    .logo-mark span {
        width: 11px;
        height: 3px;
    }
    .lang-switcher a {
        font-size: 11px;
    }
    .wpm-switcher-list li.active>span {
        font-size: 12px;
    }
}
@media (max-width: 520px){
    .footer-bottom {
        margin-bottom: 66px;
    }
}

.membrane-image {
    width: 100%;
    height: 220px;
    border-radius: 20px;
    overflow: hidden;
}

.membrane-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.field input {
    border-radius: 12px;
}
.lead-actions p {
    gap: 10px;
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.lead-actions input {
    border-radius: 12px;
    width: 100%;
    text-align: center;
    padding: 12px 14px;
    font-size: 14px;
}
.wpcf7-spinner {
    display: none;
}
.lead-actions {
    margin-top: 0;
}
.lead-grid {
    gap: 4px 10px;
}
.field {
    margin-top: 0!important;
}
.lead-card h3 {
    margin-bottom: 0;
}
.logo-a {
    text-decoration: none;
}
.lead-actions input {
    cursor: pointer;
}
.wpcf7-not-valid-tip {
    font-size: 12px;
    font-weight: 700;
}
.wpcf7-response-output {
    font-size: 12px;
}