/* ===========================================================
   Atelier PARICY — feuille de style principale
   Palette : rouille (#A85A35), olive (#5B6047), crème chaude (#F1E9DC), encre (#2B241D)
   Inspiration : univers éditorial type Sézane / Søstrene Grene
   =========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,400;1,500&family=Poppins:wght@300;400;500;600&display=swap');

:root {
  --terracotta: #A85A35;
  --terracotta-dark: #8C4526;
  --olive: #5B6047;
  --gold: #B08D57;
  --cream: #F1E9DC;
  --cream-dark: #E8DDC9;
  --ink: #2B241D;
  --muted: #7C7060;
  --white: #FFFFFF;
  --border: #E1D3BE;
  --radius: 6px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  font-weight: 300;
}

h1, h2, h3, .logo {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  letter-spacing: .2px;
  color: var(--ink);
}

a { text-decoration: none; color: inherit; }

img { max-width: 100%; display: block; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Header ---------- */
header.site-header {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
}

.logo {
  font-size: 26px;
  letter-spacing: 1px;
}

.logo span {
  color: var(--terracotta);
}

nav.main-nav ul {
  list-style: none;
  display: flex;
  gap: 32px;
}

nav.main-nav a {
  font-size: 14px;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--ink);
  transition: color .2s;
}

nav.main-nav a:hover,
nav.main-nav a.active {
  color: var(--terracotta);
}

.nav-toggle { display: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 13px 30px;
  border-radius: var(--radius);
  font-size: 14px;
  letter-spacing: .5px;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid var(--terracotta);
  transition: all .2s;
}

.btn-primary {
  background: var(--terracotta);
  color: var(--white);
}
.btn-primary:hover { background: var(--terracotta-dark); }

.btn-outline {
  background: transparent;
  color: var(--terracotta);
}
.btn-outline:hover { background: var(--terracotta); color: var(--white); }

/* ---------- Hero ---------- */
.hero {
  background:
    linear-gradient(180deg, rgba(247,243,236,.55), rgba(247,243,236,.75) 60%, rgba(247,243,236,.92)),
    url('https://images.unsplash.com/photo-1502395809857-fd80069897d0?fm=jpg&q=80&w=1800&auto=format&fit=crop') center 30% / cover no-repeat;
  padding: 110px 0 80px;
  text-align: center;
  position: relative;
}

.hero .container { position: relative; z-index: 2; }

.hero .eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
  color: var(--terracotta);
  margin-bottom: 16px;
}

.hero h1 {
  font-size: 44px;
  max-width: 720px;
  margin: 0 auto 20px;
  line-height: 1.25;
  text-shadow: 0 2px 20px rgba(247,243,236,.8);
}

.hero p {
  max-width: 560px;
  margin: 0 auto 32px;
  color: var(--muted);
  font-size: 17px;
  text-shadow: 0 2px 16px rgba(247,243,236,.9);
}

/* ---------- Placeholder image blocks (no photos yet) ---------- */
.ph-image {
  background: repeating-linear-gradient(45deg, var(--cream-dark), var(--cream-dark) 12px, var(--white) 12px, var(--white) 24px);
  border: 1px dashed var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
  padding: 12px;
}

/* ---------- Sections ---------- */
section { padding: 70px 0; }

.section-title {
  text-align: center;
  margin-bottom: 44px;
}

.section-title .eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
  color: var(--terracotta);
  display: block;
  margin-bottom: 10px;
}

.section-title h2 { font-size: 32px; }

.section-title p {
  color: var(--muted);
  max-width: 520px;
  margin: 14px auto 0;
}

/* ---------- Product grid ---------- */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(43,36,32,.08);
}

.product-card .ph-image { height: 240px; }

.product-card .info { padding: 20px; }

.product-card .badge {
  display: inline-block;
  font-size: 11px;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--terracotta);
  background: var(--cream-dark);
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.product-card h3 { font-size: 18px; margin-bottom: 6px; }

.product-card .price {
  font-weight: 600;
  color: var(--terracotta-dark);
  margin: 8px 0 16px;
  font-size: 17px;
}

.product-card .btn { width: 100%; text-align: center; }

/* ---------- Category tabs ---------- */
.category-tabs {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}

.category-tabs a {
  padding: 10px 22px;
  border: 1px solid var(--border);
  border-radius: 30px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.category-tabs a.active,
.category-tabs a:hover {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: var(--white);
}

/* ---------- Trust strip (réassurance) ---------- */
.trust-strip {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 34px 0;
}

.trust-strip .grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.trust-strip .item {
  padding: 0 8px;
}

.trust-strip .icon {
  width: 30px;
  height: 30px;
  margin: 0 auto 10px;
  color: var(--terracotta);
}

.trust-strip h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 13.5px;
  color: var(--ink);
  margin-bottom: 5px;
}

.trust-strip p {
  font-size: 12.5px;
  color: var(--muted);
}

@media (max-width: 860px) {
  .trust-strip .grid { grid-template-columns: repeat(2, 1fr); gap: 26px 20px; }
}

/* ---------- FAQ ---------- */
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}

.faq-item summary {
  cursor: pointer;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--ink);
  list-style: none;
  position: relative;
  padding-right: 30px;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  color: var(--terracotta);
  font-size: 20px;
}

.faq-item[open] summary::after { content: '\2212'; }

.faq-item p {
  margin-top: 12px;
  color: var(--muted);
}

/* ---------- Values / USP strip ---------- */
.values {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.values .grid { grid-template-columns: repeat(3, 1fr); gap: 40px; text-align: center; }

.values h3 { font-size: 18px; margin-bottom: 8px; }
.values p { color: var(--muted); font-size: 14px; }

/* ---------- Product detail ---------- */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: flex-start;
}

.product-detail .ph-image { height: 420px; border-radius: var(--radius); }

.product-detail .badge {
  display: inline-block;
  font-size: 11px;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--terracotta);
  background: var(--cream-dark);
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.product-detail h1 { font-size: 30px; margin-bottom: 12px; }

.product-detail .price { font-size: 26px; color: var(--terracotta-dark); font-weight: 600; margin-bottom: 20px; }

.product-detail .description { margin-bottom: 24px; color: var(--muted); }

.tagline-product {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 18px;
  color: var(--terracotta-dark);
  margin: -8px 0 18px;
}

.product-detail ul.specs {
  list-style: none;
  margin-bottom: 30px;
  border-top: 1px solid var(--border);
}

.product-detail ul.specs li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  display: flex;
  justify-content: space-between;
}

.product-detail ul.specs li span:first-child { color: var(--muted); }

.note-box {
  background: var(--cream-dark);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: 13px;
  color: var(--muted);
  margin-top: 20px;
}

.note-box.with-photo {
  display: flex;
  align-items: center;
  gap: 16px;
}

.note-box .saola-photo {
  width: 130px;
  height: auto;
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .note-box.with-photo { flex-direction: column; align-items: flex-start; }
}

/* ---------- Color variant selector ---------- */
.color-picker {
  margin: 20px 0;
}

.color-picker .label {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 10px;
  display: block;
}

.color-picker .swatches {
  display: flex;
  gap: 10px;
}

.color-picker button.swatch {
  border: 1px solid var(--border);
  background: var(--white);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 13px;
  cursor: pointer;
  font-family: inherit;
  transition: all .2s;
}

.color-picker button.swatch.selected,
.color-picker button.swatch:hover {
  border-color: var(--terracotta);
  color: var(--terracotta-dark);
  background: var(--cream-dark);
}

.variant { display: none; }
.variant.active { display: block; }

.pd-img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
  margin-bottom: 10px;
}
.pd-img:last-child { margin-bottom: 0; }

/* ---------- Simple content pages ---------- */
.content-page {
  max-width: 760px;
  margin: 0 auto;
}

.content-page h1 { font-size: 34px; margin-bottom: 24px; }
.content-page h2 { font-size: 22px; margin: 32px 0 12px; }
.content-page p { margin-bottom: 16px; color: var(--muted); }
.content-page .todo {
  background: #FCEFC7;
  border: 1px dashed #C9A227;
  border-radius: var(--radius);
  padding: 14px 18px;
  font-size: 14px;
  margin: 16px 0;
}

/* ---------- Contact form ---------- */
form.contact-form { display: flex; flex-direction: column; gap: 16px; margin-top: 20px; }

form.contact-form input,
form.contact-form textarea {
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 14px;
  background: var(--white);
}

form.contact-form textarea { min-height: 140px; resize: vertical; }

/* ---------- Footer ---------- */
footer.site-footer {
  background: var(--ink);
  color: #D9D0C6;
  padding: 50px 0 24px;
  margin-top: 60px;
}

footer .grid { grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 30px; }

footer h4 {
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 16px;
}

footer ul { list-style: none; }
footer ul li { margin-bottom: 8px; }
footer a:hover { color: var(--white); }

footer p.tagline { max-width: 320px; font-size: 14px; color: #B7ADA1; margin-top: 10px; }

.footer-bottom {
  border-top: 1px solid #423931;
  padding-top: 20px;
  text-align: center;
  font-size: 12px;
  color: #8A8078;
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .grid { grid-template-columns: repeat(2, 1fr); }
  .product-detail { grid-template-columns: 1fr; }
  footer .grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  nav.main-nav ul { gap: 18px; }
  .hero h1 { font-size: 30px; }
  .grid { grid-template-columns: 1fr; }
  .site-header .container { flex-wrap: wrap; gap: 12px; }
}
