:root {
  --bg: #f5f0e8;
  --bg-alt: #ede8df;
  --fg: #1a2744;
  --fg-muted: #5a6580;
  --accent: #c8522b;
  --accent-hover: #a8401f;
  --surface: #ffffff;
  --border: #d8d0c4;
  --radius: 10px;
  --radius-lg: 18px;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Instrument Serif', Georgia, serif;
  font-weight: 400;
  line-height: 1.15;
}

/* NAV */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 48px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Instrument Serif', serif;
  font-size: 1.25rem;
  color: var(--fg);
  text-decoration: none;
}

.nav-cta {
  background: var(--accent);
  color: white;
  padding: 9px 22px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--accent-hover); }

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  padding: 80px 48px 64px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--fg-muted);
  background: var(--bg-alt);
  border: 1px solid var(--border);
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #16a34a;
  box-shadow: 0 0 0 3px rgba(22,163,74,0.2);
}

.hero-headline {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  margin-bottom: 20px;
  color: var(--fg);
}

.hero-headline em {
  color: var(--accent);
  font-style: italic;
}

.hero-lede {
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 480px;
  margin-bottom: 40px;
  line-height: 1.65;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0 24px;
}
.stat:first-child { padding-left: 0; }

.stat-num {
  font-family: 'Instrument Serif', serif;
  font-size: 1.8rem;
  color: var(--fg);
}

.stat-label {
  font-size: 0.75rem;
  color: var(--fg-muted);
  font-weight: 400;
}

.stat-sep {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* SEARCH BAR */
.home-search {
  margin-top: 36px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.home-search select,
.home-search input {
  height: 48px;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0 16px;
  font-size: 0.9rem;
  font-family: 'DM Sans', sans-serif;
  background: white;
  color: var(--fg);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.home-search select:focus,
.home-search input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(200,82,43,0.15);
}
.home-search select { min-width: 180px; cursor: pointer; }
.home-search input[type="text"] { min-width: 160px; flex: 1; }
.home-search .btn-search {
  height: 48px;
  padding: 0 28px;
  background: var(--accent);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.home-search .btn-search:hover { background: var(--accent-hover); }

@media (max-width: 768px) {
  .home-search { gap: 8px; }
  .home-search select, .home-search input[type="text"] { min-width: 0; flex: 1 1 100%; }
}

/* HERO VISUAL */
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.registry-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 26px;
  box-shadow: 0 4px 24px rgba(26,39,68,0.07);
}

.registry-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 12px;
}

.registry-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.registry-dot.siret { background: #c8522b; }

.registry-number {
  font-family: 'DM Sans', monospace;
  font-size: 0.85rem;
  color: var(--fg-muted);
  margin-bottom: 4px;
}

.registry-name {
  font-family: 'Instrument Serif', serif;
  font-size: 1.3rem;
  color: var(--fg);
  margin-bottom: 4px;
}

.registry-meta {
  font-size: 0.78rem;
  color: var(--fg-muted);
  margin-bottom: 14px;
}

.registry-verified {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: #16a34a;
  font-weight: 500;
}

.review-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: 0 2px 12px rgba(26,39,68,0.05);
}

.review-stars {
  color: #f59e0b;
  font-size: 0.9rem;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.review-text {
  font-size: 0.85rem;
  color: var(--fg);
  font-style: italic;
  margin-bottom: 8px;
  line-height: 1.5;
}

.review-meta {
  font-size: 0.72rem;
  color: var(--fg-muted);
}

/* HOW */
.how {
  background: var(--fg);
  color: white;
  padding: 80px 48px;
}

.how-header {
  max-width: 1200px;
  margin: 0 auto 56px;
}

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.how h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: white;
}

.steps {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.step {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 36px 32px;
}

.step-num {
  font-family: 'Instrument Serif', serif;
  font-size: 3.5rem;
  color: rgba(255,255,255,0.12);
  margin-bottom: 20px;
}

.step h3 {
  font-size: 1.2rem;
  color: white;
  margin-bottom: 12px;
}

.step p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
}

/* REGISTERS */
.registers {
  padding: 80px 48px;
  background: var(--bg);
}

.registers-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.registers-head {
  margin-bottom: 48px;
}

.registers-head h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-top: 8px;
}

.guarantees {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 36px;
}

.guarantee {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.guarantee-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--bg);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.guarantee h4 {
  font-size: 0.95rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 6px;
}

.guarantee p {
  font-size: 0.83rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

.saviez-vous {
  background: var(--fg);
  color: white;
  border-radius: var(--radius);
  padding: 20px 28px;
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.75);
}

.saviez-vous strong { color: white; }

/* MANIFESTO */
.manifesto {
  background: var(--bg-alt);
  padding: 80px 48px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.manifesto-quote {
  max-width: 900px;
  margin: 0 auto 56px;
  text-align: center;
}

.manifesto-quote blockquote {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  font-style: italic;
  color: var(--fg);
  line-height: 1.4;
  margin-bottom: 16px;
}

.manifesto-quote cite {
  font-size: 0.85rem;
  color: var(--fg-muted);
  font-style: normal;
}

.manifesto-mission {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.mission-item h4 {
  font-size: 1rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--fg);
}

.mission-item p {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.55;
}

/* CLOSING */
.closing {
  background: var(--accent);
  padding: 100px 48px;
  text-align: center;
}

.closing-inner h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: white;
  line-height: 1.2;
  margin-bottom: 20px;
}

.closing-inner p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
}

/* FOOTER */
.footer {
  background: var(--fg);
  color: rgba(255,255,255,0.5);
  padding: 32px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Instrument Serif', serif;
  font-size: 1rem;
  color: white;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: white; }

.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

/* ARTISAN CARD */
.card-verified svg {
  width: 12px;
  height: 12px;
  vertical-align: middle;
}

/* MOBILE */
@media (max-width: 768px) {
  .nav { padding: 14px 20px; }
  .hero {
    grid-template-columns: 1fr;
    padding: 48px 20px 40px;
    gap: 40px;
  }
  .hero-visual { order: -1; }
  .hero-headline { font-size: 2.2rem; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .stat-sep { display: none; }
  .stat { padding: 0; }
  .steps { grid-template-columns: 1fr; }
  .how { padding: 56px 20px; }
  .guarantees { grid-template-columns: 1fr; }
  .manifesto { padding: 56px 20px; }
  .manifesto-mission { grid-template-columns: 1fr; gap: 20px; }
  .registers { padding: 56px 20px; }
  .closing { padding: 64px 20px; }
  .footer { flex-direction: column; align-items: flex-start; padding: 28px 20px; }
  .footer-links { flex-wrap: wrap; gap: 12px; }
}