:root{
  --bg:#FAF7F0;
  --paper:#FFFFFF;
  --ink:#1b1a18;
  --muted:rgba(27,26,24,.68);
  --line:rgba(27,26,24,.12);
  --accent:#B1081A;
  --shadow:0 10px 30px rgba(0,0,0,.08);
  --radius:16px;
  --max:1120px;
}
html,body{height:100%;}
body{
  margin:0;
  color:var(--ink);
  background:var(--bg);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height:1.6;
}
a{color:inherit;text-decoration:none;}
a:hover{text-decoration:underline;text-underline-offset:3px;}
.container{width:min(var(--max), calc(100% - 40px)); margin:0 auto;}
.skip-link{position:absolute;left:-999px;top:auto;width:1px;height:1px;overflow:hidden;}
.skip-link:focus{left:14px;top:14px;width:auto;height:auto;padding:10px 12px;background:#fff;border:1px solid var(--line);border-radius:12px;z-index:9999;}

.site-header{
  position:sticky; top:0; z-index:50;
  background: rgba(250,247,240,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner{display:flex;align-items:center;justify-content:space-between;gap:16px;padding:14px 0;}
.brand{display:flex;align-items:center;gap:12px;}
.brand img{display:block;}
.brand .basket{width:52px;height:52px;object-fit:contain;}
.brand .wordmark{height:28px;width:auto;object-fit:contain;}

.nav{display:flex;gap:10px;align-items:center;flex-wrap:wrap;justify-content:flex-end;}
.nav a{font-size:14px;color:var(--muted);padding:8px 10px;border-radius:999px;border:1px solid transparent;}
.nav a[aria-current="page"]{color:var(--ink);background:#fff;border-color:var(--line);}

main{padding:28px 0 64px;}
.card{border:1px solid var(--line);background:var(--paper);border-radius:var(--radius);box-shadow:var(--shadow);overflow:hidden;}
.card-pad{padding:22px;}
.kicker{display:inline-flex;gap:8px;align-items:center;font-size:12px;color:var(--muted);letter-spacing:.2px;}
.dot{width:7px;height:7px;border-radius:999px;background:var(--accent);display:inline-block;}

h1{
  margin:12px 0 10px;
  font-size:clamp(28px,4vw,44px);
  line-height:1.1;
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  letter-spacing:.2px;
}
h2,h3{font-family: ui-serif, Georgia, "Times New Roman", serif; letter-spacing:.2px;}
.lead{margin:0 0 16px;color:var(--muted);font-size:16px;}

.actions{display:flex;gap:10px;flex-wrap:wrap;margin-top:12px;}
.btn{display:inline-flex;align-items:center;justify-content:center;padding:10px 14px;border-radius:999px;border:1px solid var(--line);background:#fff;font-size:14px;}
.btn.primary{border-color:rgba(177,8,26,.25);background:rgba(177,8,26,.06);}
.btn:hover{filter:brightness(.98);text-decoration:none;}

.hero{display:grid;grid-template-columns:1.2fr .8fr;gap:18px;align-items:stretch;margin-top:12px;}
@media (max-width:900px){.hero{grid-template-columns:1fr;}}

.figure{border-top:1px solid var(--line);padding:16px 22px 22px;color:var(--muted);font-size:14px;}
.figure img{width:100%;height:320px;object-fit:cover;border-radius:14px;border:1px solid var(--line);background:#fff;}
@media (max-width:900px){.figure img{height:260px;}}

.grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;margin-top:18px;}
@media (max-width:980px){.grid{grid-template-columns:1fr;}}
.mini h3{margin:8px 0 6px;font-size:18px;}
.mini p{margin:0;color:var(--muted);font-size:14px;}

.section-title{display:flex;align-items:flex-end;justify-content:space-between;gap:12px;margin:32px 0 12px;}
.section-title h2{margin:0;font-size:22px;}
.section-title span{color:var(--muted);font-size:13px;}
hr.sep{border:0;border-top:1px solid var(--line);margin:22px 0;}

.page-head{display:flex;align-items:flex-end;justify-content:space-between;gap:16px;flex-wrap:wrap;}
.page-head h1{margin:0;}
.breadcrumb{font-size:13px;color:var(--muted);}

.content{margin-top:14px;display:grid;grid-template-columns:1.05fr .95fr;gap:18px;}
@media (max-width:980px){.content{grid-template-columns:1fr;}}

.list{margin:0;padding-left:18px;color:var(--muted);}
.list li{margin:6px 0;}

.badges{display:flex;gap:8px;flex-wrap:wrap;margin-top:10px;}
.badge{font-size:12px;color:var(--muted);border:1px solid var(--line);background:#fff;padding:6px 10px;border-radius:999px;}

.table{width:100%;border-collapse:collapse;overflow:hidden;border-radius:14px;border:1px solid var(--line);background:#fff;}
.table th,.table td{text-align:left;padding:12px 12px;border-bottom:1px solid var(--line);font-size:14px;}
.table th{color:var(--muted);font-weight:600;}
.table tr:last-child td{border-bottom:0;}

.cards{display:grid;grid-template-columns:repeat(2,1fr);gap:14px;margin-top:14px;}
@media (max-width:980px){.cards{grid-template-columns:1fr;}}
.product-card{border:1px solid var(--line);border-radius:16px;background:#fff;padding:14px 14px;}
.product-card h3{margin:0 0 6px;font-size:16px;}
.product-card p{margin:0;color:var(--muted);font-size:14px;}
.product-card .meta{margin-top:10px;display:flex;gap:8px;flex-wrap:wrap;}
.product-card .meta a{font-size:12px;color:var(--muted);border:1px solid var(--line);background:var(--bg);padding:6px 10px;border-radius:999px;}

form{display:grid;gap:12px;}
label{font-size:13px;color:var(--muted);}
input,textarea{width:100%;padding:10px 12px;border-radius:12px;border:1px solid var(--line);background:#fff;font-family:ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;font-size:14px;color:var(--ink);}
textarea{min-height:140px;resize:vertical;}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:12px;}
@media (max-width:780px){.form-row{grid-template-columns:1fr;}}

.notice{font-size:13px;color:var(--muted);}
.site-footer{border-top:1px solid var(--line);padding:18px 0 26px;color:var(--muted);font-size:13px;}
.footer-inner{display:flex;justify-content:space-between;gap:14px;flex-wrap:wrap;}

/* Header nav only */
.header-nav-only{justify-content:flex-end;}
@media (max-width: 900px){
  .header-nav-only{justify-content:center;}
}

/* Big logo on homepage */
.home-logo{
  display:flex;
  justify-content:center;
  align-items:center;
  padding: 18px 0 6px;
}
.home-logo img{
  width:min(520px, 90%);
  height:auto;
}

/* Contact layout: 2/3 form + 1/3 coordonnées */
.content.contact-split{
  grid-template-columns: 2fr 1fr;
}
@media (max-width:980px){
  .content.contact-split{grid-template-columns:1fr;}
}

/* Home logo with basket + wordmark */
.home-logo{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:14px;
  padding: 18px 0 6px;
}
.home-logo .home-basket{
  width:64px;
  height:auto;
  object-fit:contain;
}
.home-logo .home-wordmark{
  width:min(520px, 78%);
  height:auto;
}
@media (max-width:520px){
  .home-logo{gap:10px;}
  .home-logo .home-basket{width:54px;}
}


/* Full width single column pages */
.content.full-width{grid-template-columns:1fr;}

.hero.hero-single{grid-template-columns:1fr;}

/* AB badge in header */
.header-with-ab{justify-content:space-between;}
.ab-badge img{height:28px;width:auto;display:block;opacity:.95}
@media (max-width:700px){
  .ab-badge img{height:24px;}
}

/* Home logo: basket enlarged (300%) */
.home-logo .home-basket{width:192px;}
@media (max-width:760px){
  .home-logo .home-basket{width:150px;}
}

/* Homepage hero photo: show full image */
.figure img.hero-photo{
  height:auto;
  max-height:640px;
  object-fit:contain;
}

/* Explorer subtitle span empty */
.section-title span:empty{display:none;}

/* Map embed */
.map-embed{
  border:1px solid var(--line);
  border-radius:14px;
  overflow:hidden;
  background:#fff;
}
.map-embed iframe{
  width:100%;
  height:420px;
  border:0;
  display:block;
}
@media (max-width:700px){
  .map-embed iframe{height:340px;}
}
