:root{
  --paper:#f6f1e8;
  --paper-2:#f1eadf;
  --ink:#1f2328;
  --muted:#5e6672;

  --wood:#9a6a3a;     /* accent bois */
  --wood-2:#c08a52;   /* clair */
  --olive:#2f5b4a;    /* touche artisan (très douce) */

  --border: rgba(31,35,40,.12);
  --shadow: 0 14px 35px rgba(31,35,40,.12);
  --shadow-2: 0 22px 55px rgba(31,35,40,.16);
}

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:
    radial-gradient(circle at 10% 0%, rgba(154,106,58,.10), transparent 45%),
    radial-gradient(circle at 95% 15%, rgba(47,91,74,.08), transparent 40%),
    var(--paper);
  color: var(--ink);
  line-height: 1.55;
}

a{color:inherit;text-decoration:none}
img{display:block;max-width:100%}
.container{width:min(1100px, 100% - 2.5rem); margin-inline:auto}

/* Header */
.site-header{
  position: sticky;
  top:0;
  z-index:50;
  background: rgba(246,241,232,.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1.5rem;
  padding: 1rem 0;
}

/* .brand{display:flex;align-items:center;gap:.85rem}
.brand-mark{
  width:44px;height:44px;border-radius: 14px;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.75), transparent 45%),
    linear-gradient(135deg, var(--wood), var(--wood-2));
  box-shadow: 0 12px 26px rgba(31,35,40,.18);
  border: 1px solid rgba(31,35,40,.08);
}
.brand-text{display:flex;flex-direction:column;gap:.1rem}
.brand-name{
  font-family: "Playfair Display", serif;
  font-weight: 700;
  letter-spacing: .02em;
}
.brand-tag{font-size:.88rem;color:var(--muted)} */

/* Logo navigation */
.brand{
  display:flex;
  align-items:center;
}

.brand-logo{
  height: 52px;          
  width: auto;
  display:block;
  filter: drop-shadow(0 10px 18px rgba(31,35,40,.20));
  transition: transform .15s ease, filter .2s ease;
}

.brand-logo:hover{
  transform: translateY(-1px);
  filter: drop-shadow(0 14px 22px rgba(31,35,40,.25));
}

.nav{
  display:flex;
  align-items:center;
  gap:1.1rem;
  flex-wrap:wrap;
  justify-content:flex-end;
  font-size:.95rem;
}
.nav a{
  color: var(--muted);
  position:relative;
  transition: color .2s ease, opacity .2s ease;
}
.nav a:hover{color: var(--ink)}
.nav a::after{
  content:"";
  position:absolute; left:0; bottom:-.35rem;
  width:0; height:2px;
  background: linear-gradient(90deg, var(--wood), rgba(47,91,74,.75));
  transition: width .2s ease;
}
.nav a:hover::after{width:100%}

.nav-cta{
  padding: .58rem .95rem;
  border-radius: 14px;
  border: 1px solid rgba(154,106,58,.35);
  background: rgba(241,234,223,.65);
  color: var(--ink);
}
.nav-cta::after{display:none}
.nav-cta:hover{
  background: rgba(241,234,223,.95);
  border-color: rgba(154,106,58,.55);
}

/* Hero */
.hero{
  position:relative;
  padding: 3.8rem 0 3.2rem;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(241,234,223,.75), rgba(246,241,232,.92));
}

.hero-media{
  position:absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(154,106,58,.18), transparent 45%),
    radial-gradient(circle at 85% 10%, rgba(47,91,74,.12), transparent 40%),
    linear-gradient(to bottom, rgba(246,241,232,.82), rgba(246,241,232,.95)),
    url("./img/hero.jpg");
  background-size: cover;
  background-position: center;
  filter: saturate(.95) contrast(.98);
  opacity: .55;
}
.hero-inner{position:relative; max-width: 820px}

.kicker{
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .78rem;
  color: rgba(154,106,58,.95);
  margin-bottom: .9rem;
}

.hero h1{
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: clamp(2rem, 3vw + 1.1rem, 3.15rem);
  line-height: 1.12;
  margin-bottom: 1.05rem;
}

.hero-lead{
  color: var(--muted);
  max-width: 62ch;
  margin-bottom: 1.5rem;
}

.hero-actions{display:flex; gap:.8rem; flex-wrap:wrap}

/* Buttons (plus sobres, plus “atelier”) */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius: 14px;
  padding: .78rem 1.25rem;
  border: 1px solid transparent;
  font-weight: 600;
  cursor:pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .2s ease, border-color .2s ease;
  white-space: nowrap;
}

.btn.primary{
  background: var(--wood);
  color: #fff;
  box-shadow: 0 12px 22px rgba(154,106,58,.20);
}
.btn.primary:hover{
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(154,106,58,.26);
  background: #8f5f32;
}

.btn.ghost{
  background: rgba(241,234,223,.72);
  border-color: rgba(31,35,40,.14);
  color: var(--ink);
}
.btn.ghost:hover{
  background: rgba(241,234,223,.98);
  border-color: rgba(154,106,58,.28);
}

.trust{
  margin-top: 2rem;
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .9rem;
}
.trust-item{
  padding: 1rem 1.05rem;
  border-radius: 16px;
  background: rgba(241,234,223,.70);
  border: 1px solid rgba(31,35,40,.10);
  box-shadow: var(--shadow);
}
.trust-item strong{
  display:block;
  font-family: "Playfair Display", serif;
  font-size: 1.05rem;
  margin-bottom: .1rem;
}
.trust-item span{color: var(--muted); font-size: .92rem}

/* Sections */
.section{padding: 4rem 0}
.section.alt{
  background: linear-gradient(180deg, var(--paper-2), var(--paper));
  border-top: 1px solid rgba(31,35,40,.06);
  border-bottom: 1px solid rgba(31,35,40,.06);
}
.section.alt2{
  background: linear-gradient(180deg, rgba(47,91,74,.06), rgba(154,106,58,.05));
  border-top: 1px solid rgba(31,35,40,.06);
}

.section-head{display:flex;flex-direction:column;gap:.65rem;margin-bottom:2rem}
.section-head h2{
  font-family: "Playfair Display", serif;
  font-size: 1.9rem;
}
.section-head p{color: var(--muted); max-width: 74ch}

/* Cards */
.cards{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.3rem;
}
.card{
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(31,35,40,.10);
  border-radius: 18px;
  padding: 1.55rem 1.55rem 1.45rem;
  box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover{
  transform: translateY(-4px);
  box-shadow: var(--shadow-2);
  border-color: rgba(154,106,58,.22);
}
.card h3{
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  margin-bottom: .55rem;
}
.card p{color: var(--muted); margin-bottom: .9rem}

.list{list-style:none;display:flex;flex-direction:column;gap:.5rem}
.list li{
  color: rgba(31,35,40,.92);
  font-size: .95rem;
  position:relative;
  padding-left: 1.15rem;
}
.list li::before{
  content:"";
  position:absolute; left:0; top:.55rem;
  width:.45rem;height:.45rem;border-radius:999px;
  background: rgba(154,106,58,.95);
  box-shadow: 0 0 0 3px rgba(154,106,58,.14);
}

/* Gallery */
.gallery{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.1rem;
}
.shot{
  border-radius: 18px;
  overflow:hidden;
  border: 1px solid rgba(31,35,40,.10);
  background: rgba(255,255,255,.55);
  box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.shot:hover{
  transform: translateY(-4px);
  box-shadow: var(--shadow-2);
  border-color: rgba(47,91,74,.18);
}
.shot img{width:100%; height:240px; object-fit:cover}
.shot figcaption{padding:.9rem 1rem;color:var(--muted);font-size:.92rem}

/* Quotes */
.quotes{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.2rem;
}
.quote{
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(31,35,40,.10);
  border-radius: 18px;
  padding: 1.35rem 1.35rem;
  box-shadow: var(--shadow);
}
.quote p{color: rgba(31,35,40,.92); margin-bottom:.8rem}
.quote footer{color: var(--muted); font-size:.92rem}

/* CTA */
.cta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1.5rem;
  padding: 1.7rem 1.7rem;
  border-radius: 22px;
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(31,35,40,.10);
  box-shadow: var(--shadow);
}
.cta h2{
  font-family: "Playfair Display", serif;
  font-size: 1.7rem;
  margin-bottom:.25rem;
}
.cta p{color: var(--muted)}
.tiny{margin-top:.9rem;color:var(--muted);font-size:.85rem}

/* Footer */
.site-footer{
  border-top: 1px solid rgba(31,35,40,.10);
  padding: 1.2rem 0;
  background: rgba(241,234,223,.65);
}
.footer-inner{
  display:flex;
  justify-content:space-between;
  gap:1rem;
  flex-wrap:wrap;
}
.muted{color: var(--muted)}

/* Zone & délais */
.info-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.2rem;
}
.info-card{
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(31,35,40,.10);
  border-radius: 18px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}
.info-card h3{
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  margin-bottom: .45rem;
}
.info-card p{ color: var(--muted); }

/* Responsive */
@media (max-width: 900px){
  .trust{grid-template-columns: 1fr; max-width: 560px}
  .cta{flex-direction:column; align-items:flex-start}
}
@media (max-width: 768px){
  .header-inner{flex-direction:column; align-items:flex-start}
  .nav{justify-content:flex-start}
  .hero{padding: 3.2rem 0 2.8rem}
  .hero-actions{flex-direction:column; align-items:stretch; max-width: 340px}
  .hero-actions .btn{width:100%}
  .shot img{height:220px}
}
@media (max-width: 480px){
  .container{width: min(100% - 1.5rem, 480px)}
  .brand-tag{display:none}
  .hero h1{font-size: 1.75rem}
}

@media (max-width: 480px){
  .brand-logo{
    height: 40px;
  }
}
