:root{
  --bg:#f5f7fb;
  --surface:#ffffff;
  --text:#152033;
  --muted:#667085;
  --accent:#b68a3a;
  --accent2:#23395d;
  --line:#e7eaf0;
  --radius:22px;
  --shadow:0 18px 55px rgba(20,32,51,.09);
}

*{box-sizing:border-box}

html{scroll-behavior:smooth}

body{
  margin:0;
  background:
    radial-gradient(circle at 85% 0%,rgba(182,138,58,.08),transparent 32rem),
    var(--bg);
  color:var(--text);
  font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  line-height:1.7;
}

body.site-belgique-labrador{
  --accent:#bd8732;
  --accent2:#22364f;
}

body.site-pet-services-belgium{
  --accent:#c39948;
  --accent2:#142d49;
}

body.site-pet-marketplace{
  --accent:#d09a39;
  --accent2:#182d4a;
}

a{color:inherit}

header{
  max-width:1180px;
  margin:0 auto;
  padding:30px 28px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:24px;
}

header strong{
  font-size:1.15rem;
  letter-spacing:.02em;
}

nav{
  display:flex;
  gap:7px;
  flex-wrap:wrap;
}

nav a{
  text-decoration:none;
  font-size:.78rem;
  font-weight:800;
  letter-spacing:.08em;
  padding:8px 11px;
  border:1px solid var(--line);
  border-radius:999px;
  background:rgba(255,255,255,.8);
  transition:.18s ease;
}

nav a:hover{
  border-color:var(--accent);
  color:var(--accent2);
  transform:translateY(-1px);
}

main{
  width:min(1180px,calc(100% - 40px));
  margin:0 auto;
  padding:55px 0 85px;
}

main>h1{
  max-width:850px;
  margin:0 0 18px;
  font-size:clamp(2.7rem,7vw,5.8rem);
  line-height:.94;
  letter-spacing:-.055em;
  color:var(--accent2);
}

main>h1:after{
  content:"";
  display:block;
  width:78px;
  height:5px;
  margin-top:25px;
  border-radius:20px;
  background:var(--accent);
}

main>p{
  color:var(--muted);
  margin-bottom:45px;
}

.card{
  position:relative;
  overflow:hidden;
  background:var(--surface);
  padding:30px 32px;
  margin:20px 0;
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  transition:.2s ease;
}

.card:before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  bottom:0;
  width:4px;
  background:var(--accent);
}

.card:hover{
  transform:translateY(-3px);
  box-shadow:0 24px 65px rgba(20,32,51,.13);
}

.card h2{
  margin:0 0 10px;
  color:var(--accent2);
  font-size:clamp(1.4rem,3vw,2rem);
  line-height:1.15;
}

.card h2 a{text-decoration:none}

.card p{
  margin:0;
  color:var(--muted);
}

article{
  max-width:900px;
  margin:0 auto;
  padding:clamp(28px,6vw,70px);
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:28px;
  box-shadow:var(--shadow);
}

article h1{
  margin:12px 0 25px;
  font-size:clamp(2.3rem,6vw,4.8rem);
  line-height:1;
  letter-spacing:-.045em;
  color:var(--accent2);
}

article h2{
  margin-top:2.2em;
  color:var(--accent2);
}

article p,article li{
  font-size:1.08rem;
}

article img{
  max-width:100%;
  height:auto;
  border-radius:18px;
}

.meta{
  color:var(--accent);
  text-transform:uppercase;
  letter-spacing:.1em;
  font-weight:800;
  font-size:.75rem;
}

footer{
  max-width:1180px;
  margin:0 auto;
  padding:35px 28px 55px;
  border-top:1px solid var(--line);
}

footer a{
  color:var(--muted);
  text-decoration:none;
  font-weight:700;
}

footer a:hover{color:var(--accent2)}

@media(max-width:700px){
  header{
    align-items:flex-start;
    flex-direction:column;
  }

  main{
    width:min(100% - 28px,1180px);
    padding-top:35px;
  }

  .card{padding:24px}
  article{border-radius:20px}
}
