:root {
  --site-bg: #f6f1e6;
  --site-surface: rgba(255, 250, 241, 0.82);
  --site-surface-strong: #fffaf1;
  --site-border: rgba(72, 55, 38, 0.12);
  --site-text: #2d241c;
  --site-muted: #625548;
  --site-accent: #b55c36;
  --site-accent-deep: #8a4324;
  --site-accent-soft: #edd7c8;
  --site-forest: #27463d;
  --site-shadow: 0 18px 48px rgba(52, 35, 21, 0.08);
  --site-radius-xl: 28px;
  --site-radius-lg: 22px;
  --site-radius-md: 16px;
  --site-radius-sm: 12px;
  --site-width: min(1180px, calc(100vw - 2rem));
  --site-heading-font: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  --site-body-font: "Avenir Next", "Segoe UI", "Trebuchet MS", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: light;
}

body {
  margin: 0;
  font-family: var(--site-body-font);
  color: var(--site-text);
  background:
    radial-gradient(circle at top left, rgba(181, 92, 54, 0.1), transparent 28%),
    radial-gradient(circle at top right, rgba(39, 70, 61, 0.12), transparent 26%),
    linear-gradient(180deg, #fbf6ee 0%, var(--site-bg) 100%);
  min-height: 100vh;
}

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

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

button,
input,
select {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.site-page {
  min-height: 100vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(251, 246, 238, 0.84);
  border-bottom: 1px solid rgba(72, 55, 38, 0.08);
}

.site-header__inner,
.site-main,
.site-footer__inner {
  width: var(--site-width);
  margin: 0 auto;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 84px;
  padding: 0.9rem 0;
}

.site-brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.site-brand__mark,
.site-brand__logo {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  flex: 0 0 auto;
}

.site-brand__mark {
  display: grid;
  place-items: center;
  font-family: var(--site-heading-font);
  font-size: 1.25rem;
  color: #fff8f3;
  background:
    linear-gradient(135deg, var(--site-accent) 0%, #d59063 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.site-brand__logo {
  object-fit: cover;
}

.site-brand__copy {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.site-brand__copy strong {
  font-family: var(--site-heading-font);
  font-size: 1.18rem;
}

.site-brand__copy small {
  color: var(--site-muted);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.site-nav__link,
.site-header__backoffice,
.button-link,
.text-link {
  transition:
    transform 140ms ease,
    background-color 140ms ease,
    color 140ms ease,
    border-color 140ms ease;
}

.site-nav__link {
  padding: 0.75rem 0.95rem;
  border-radius: 999px;
  color: var(--site-muted);
}

.site-nav__link:hover,
.site-nav__link.is-active {
  background: rgba(39, 70, 61, 0.08);
  color: var(--site-forest);
}

.site-header__backoffice,
.button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.82rem 1.1rem;
  border-radius: 999px;
  background: var(--site-forest);
  color: #f8f4eb;
  box-shadow: var(--site-shadow);
}

.button-link--secondary {
  background: rgba(39, 70, 61, 0.08);
  color: var(--site-forest);
  box-shadow: none;
}

.site-header__backoffice:hover,
.button-link:hover,
.text-link:hover {
  transform: translateY(-1px);
}

.text-link {
  color: var(--site-accent-deep);
  font-weight: 600;
}

.site-main {
  padding: 2rem 0 4rem;
}

.site-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 1.4rem;
  align-items: stretch;
}

.site-hero__copy,
.site-hero__banner,
.content-card,
.toolbar-card,
.site-shell-card,
.category-card,
.catalog-card,
.object-gallery,
.content-card--narrow {
  background: var(--site-surface);
  border: 1px solid var(--site-border);
  box-shadow: var(--site-shadow);
  border-radius: var(--site-radius-xl);
}

.site-hero__copy {
  padding: clamp(1.6rem, 3vw, 2.8rem);
}

.site-hero__copy h1,
.section-heading h2,
.content-card h2,
.toolbar-card h2,
.category-card h3,
.catalog-card h3 {
  margin: 0;
  font-family: var(--site-heading-font);
  line-height: 1.04;
}

.site-hero__copy h1 {
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  max-width: 12ch;
}

.site-hero__copy p {
  font-size: 1.04rem;
  color: var(--site-muted);
  max-width: 54ch;
}

.site-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.site-hero--compact .site-hero__copy {
  padding: 1.4rem 1.6rem;
}

.site-hero--compact .site-hero__copy h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  max-width: none;
}

.site-hero--compact .site-hero__banner {
  min-height: 240px;
}

.site-kicker {
  margin: 0 0 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--site-accent);
  font-size: 0.78rem;
  font-weight: 700;
}

.site-search {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  margin-top: 1.4rem;
}

.site-search input,
.catalog-filters select,
.catalog-filters button,
.site-search button {
  border: 1px solid rgba(72, 55, 38, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  padding: 0.92rem 1rem;
}

.site-search input {
  flex: 1 1 260px;
  min-width: 0;
}

.site-search button,
.catalog-filters button {
  background: linear-gradient(135deg, var(--site-accent) 0%, #d07c52 100%);
  color: #fffaf6;
  border: 0;
  font-weight: 700;
  cursor: pointer;
}

.site-hero__banner {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  padding: 1.4rem;
  display: grid;
  align-items: end;
  background:
    linear-gradient(160deg, rgba(39, 70, 61, 0.95), rgba(181, 92, 54, 0.92));
  color: #fff7ef;
}

.site-hero__banner img,
.site-hero__texture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
}

.site-hero__texture {
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.22), transparent 24%),
    radial-gradient(circle at 80% 18%, rgba(255, 255, 255, 0.18), transparent 18%),
    radial-gradient(circle at 65% 78%, rgba(255, 255, 255, 0.16), transparent 28%);
}

.site-hero__banner-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.55rem;
  max-width: 28rem;
}

.site-hero__banner-copy strong {
  font-family: var(--site-heading-font);
  font-size: 1.8rem;
}

.site-section {
  margin-top: 1.6rem;
}

.site-section--split,
.object-page {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.section-heading,
.toolbar-card,
.results-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.section-heading {
  margin-bottom: 1rem;
}

.content-card,
.toolbar-card {
  padding: 1.4rem;
}

.content-card--highlight {
  background:
    linear-gradient(180deg, rgba(255, 252, 246, 0.98), rgba(244, 233, 223, 0.8));
}

.content-card__lead {
  margin-top: 0;
  font-size: 1rem;
  color: var(--site-text);
  font-weight: 600;
}

.content-card p,
.toolbar-card p,
.category-card p,
.catalog-card p {
  color: var(--site-muted);
}

.content-card--narrow {
  max-width: 760px;
}

.category-chip-list,
.link-stack,
.inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.site-note-list {
  margin: 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.7rem;
  color: var(--site-muted);
}

.category-chip {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 1rem 1.1rem;
  border-radius: var(--site-radius-md);
  border: 1px solid rgba(39, 70, 61, 0.12);
  background: rgba(255, 255, 255, 0.75);
}

.category-chip--prominent {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(237, 215, 200, 0.78));
}

.catalog-grid,
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.catalog-card {
  overflow: hidden;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.catalog-card:hover,
.catalog-card:focus-within {
  transform: translateY(-3px);
  border-color: rgba(181, 92, 54, 0.18);
}

.catalog-card__link {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.catalog-card__media {
  aspect-ratio: 4 / 3;
  background: linear-gradient(180deg, rgba(39, 70, 61, 0.08), rgba(181, 92, 54, 0.08));
}

.catalog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.catalog-card__placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  color: var(--site-muted);
  background: rgba(39, 70, 61, 0.06);
}

.catalog-card__body {
  display: grid;
  gap: 0.75rem;
  padding: 1.1rem;
}

.catalog-card__badges,
.catalog-card__meta,
.results-summary,
.object-meta {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.catalog-card__badges {
  flex-wrap: wrap;
}

.catalog-card__badge {
  display: inline-flex;
  align-items: center;
  min-height: 1.9rem;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  background: rgba(39, 70, 61, 0.08);
  color: var(--site-muted);
  font-size: 0.76rem;
}

.catalog-card__badge--accent {
  background: rgba(181, 92, 54, 0.12);
  color: var(--site-accent-deep);
  font-weight: 700;
}

.catalog-card__title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.catalog-card__summary {
  display: -webkit-box;
  min-height: 3.9em;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.catalog-card__meta strong,
.object-price {
  font-size: 1.18rem;
  color: var(--site-forest);
}

.catalog-card__meta {
  justify-content: space-between;
}

.results-summary,
.object-meta {
  justify-content: space-between;
  flex-wrap: wrap;
}

.toolbar-card {
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.toolbar-card__copy {
  max-width: 34rem;
}

.toolbar-card__actions {
  display: grid;
  gap: 0.9rem;
  flex: 1 1 340px;
}

.catalog-filters {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.catalog-filters label {
  display: grid;
  gap: 0.35rem;
  min-width: 180px;
  color: var(--site-muted);
}

.catalog-category-browser {
  border: 1px solid rgba(39, 70, 61, 0.12);
  border-radius: var(--site-radius-md);
  background: rgba(255, 255, 255, 0.76);
  overflow: hidden;
}

.catalog-category-browser summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.9rem 1rem;
  cursor: pointer;
  list-style: none;
}

.catalog-category-browser summary::-webkit-details-marker {
  display: none;
}

.catalog-category-browser__label {
  color: var(--site-muted);
  font-size: 0.83rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.catalog-category-browser__content {
  display: grid;
  gap: 1rem;
  padding: 0 1rem 1rem;
}

.catalog-category-browser__all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.7rem;
  width: fit-content;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(39, 70, 61, 0.12);
  background: rgba(39, 70, 61, 0.05);
  color: var(--site-forest);
  font-weight: 600;
}

.catalog-category-browser__all.is-active,
.category-tree__leaf.is-active {
  border-color: rgba(181, 92, 54, 0.24);
  background: rgba(181, 92, 54, 0.12);
}

.catalog-category-browser__empty {
  margin: 0;
  color: var(--site-muted);
}

.category-tree,
.category-directory {
  display: grid;
  gap: 0.75rem;
}

.category-tree__node {
  margin: 0;
  border: 1px solid rgba(39, 70, 61, 0.1);
  border-radius: var(--site-radius-md);
  background: rgba(255, 255, 255, 0.82);
  overflow: hidden;
}

.category-tree__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  padding: 0.85rem 1rem;
  cursor: pointer;
  list-style: none;
}

.category-tree__summary::-webkit-details-marker {
  display: none;
}

.category-tree__summary-main {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
}

.category-tree__chevron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.1rem;
  color: var(--site-muted);
  transition: transform 160ms ease;
}

.category-tree__node > .category-tree__summary .category-tree__chevron::before {
  content: "▸";
}

.category-tree__node[open] > .category-tree__summary .category-tree__chevron::before {
  content: "▾";
}

.category-tree__label {
  font-weight: 700;
  color: var(--site-text);
}

.category-tree__count {
  color: var(--site-muted);
  font-size: 0.86rem;
  text-align: right;
  white-space: nowrap;
}

.category-tree__children {
  display: grid;
  gap: 0.55rem;
  padding: 0 0.8rem 0.8rem 1.1rem;
}

.category-tree__node--depth-1,
.category-tree__node--depth-2,
.category-tree__node--depth-3 {
  margin-left: 0.8rem;
}

.category-tree__leaf {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.72rem 0.9rem;
  border-radius: var(--site-radius-md);
  border: 1px solid rgba(39, 70, 61, 0.08);
  background: rgba(39, 70, 61, 0.03);
}

.category-tree__leaf-label {
  font-weight: 600;
  color: var(--site-text);
}

.category-tree__leaf-count {
  color: var(--site-muted);
  font-size: 0.86rem;
  text-align: right;
}

.results-summary {
  margin: 0.4rem 0 1rem;
  color: var(--site-muted);
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1.2rem;
}

.pagination__link,
.pagination__ellipsis {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.7rem;
  min-height: 2.7rem;
  border-radius: 999px;
  border: 1px solid rgba(39, 70, 61, 0.12);
  background: rgba(255, 255, 255, 0.8);
}

.pagination__link.is-active {
  background: var(--site-forest);
  color: #fff9f2;
  border-color: var(--site-forest);
}

.category-card {
  padding: 1.2rem;
}

.detail-list {
  display: grid;
  gap: 0.8rem;
  margin: 0;
}

.detail-list div {
  display: grid;
  gap: 0.2rem;
}

.detail-list dt {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--site-accent);
}

.detail-list dd {
  margin: 0;
  color: var(--site-text);
}

.category-path {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
}

.category-path__segment {
  display: inline-flex;
  align-items: center;
  min-height: 1.9rem;
  padding: 0.18rem 0.65rem;
  border-radius: 999px;
  background: rgba(39, 70, 61, 0.08);
  color: var(--site-text);
  font-size: 0.84rem;
}

.category-path__separator {
  color: var(--site-accent);
  font-weight: 700;
}

.object-gallery {
  padding: 1rem;
  align-self: start;
  position: sticky;
  top: 104px;
}

.object-gallery__main {
  overflow: hidden;
  border-radius: var(--site-radius-lg);
  background: rgba(39, 70, 61, 0.06);
  aspect-ratio: 1 / 1;
  min-height: 440px;
  display: grid;
  place-items: center;
}

.object-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.8rem;
}

.object-gallery__thumbs {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  margin-top: 0.9rem;
}

.object-gallery__thumb {
  width: 88px;
  height: 88px;
  border-radius: var(--site-radius-sm);
  border: 2px solid transparent;
  padding: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.9);
  cursor: pointer;
}

.object-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.object-gallery__thumb.is-active {
  border-color: var(--site-accent);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.48rem 0.75rem;
  border-radius: 999px;
  background: rgba(39, 70, 61, 0.1);
  color: var(--site-forest);
  font-weight: 700;
}

.object-reference {
  margin: 0 0 0.9rem;
  color: var(--site-muted);
  font-size: 0.92rem;
}

.rich-copy {
  color: var(--site-muted);
}

.future-action {
  display: grid;
  gap: 0.6rem;
  margin-top: 1.4rem;
  padding: 1rem 1.1rem;
  border-radius: var(--site-radius-lg);
  border: 1px solid rgba(39, 70, 61, 0.1);
  background: rgba(39, 70, 61, 0.05);
}

.future-action--vinted {
  background:
    linear-gradient(180deg, rgba(39, 70, 61, 0.1), rgba(255, 255, 255, 0.85));
}

.future-action--fallback {
  background:
    linear-gradient(180deg, rgba(181, 92, 54, 0.08), rgba(255, 255, 255, 0.88));
}

.future-action__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.future-action__buttons form {
  margin: 0;
}

.future-action__lead {
  margin: 0;
  color: var(--site-text);
  font-weight: 700;
}

.future-action button {
  width: fit-content;
  padding: 0.95rem 1.2rem;
  border: 0;
  border-radius: 999px;
  background: var(--site-forest);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.checkout-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.4rem;
}

.checkout-actions form {
  margin: 0;
}

.checkout-actions button {
  width: fit-content;
  padding: 0.95rem 1.2rem;
  border: 0;
  border-radius: 999px;
  background: var(--site-forest);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.checkout-actions__ghost {
  background: rgba(39, 70, 61, 0.12) !important;
  color: var(--site-forest) !important;
}

.future-action small,
.empty-state p {
  color: var(--site-muted);
}

.empty-state {
  padding: 2rem;
  border-radius: var(--site-radius-lg);
  background: rgba(255, 255, 255, 0.72);
  border: 1px dashed rgba(72, 55, 38, 0.18);
}

.site-footer {
  border-top: 1px solid rgba(72, 55, 38, 0.08);
  margin-top: 2rem;
}

.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.3rem 0 2rem;
  color: var(--site-muted);
}

@media (max-width: 1080px) {
  .catalog-grid,
  .category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .site-header__inner,
  .section-heading,
  .toolbar-card,
  .site-footer__inner,
  .site-section--split,
  .object-page,
  .site-hero {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .site-header__backoffice {
    align-self: flex-start;
  }

  .object-gallery {
    position: static;
    top: auto;
  }

  .object-gallery__main {
    min-height: 320px;
  }

  .catalog-grid,
  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .site-main {
    padding-top: 1rem;
  }

  .site-header__inner,
  .site-main,
  .site-footer__inner {
    width: min(100vw - 1rem, 1180px);
  }

  .catalog-grid,
  .category-grid {
    grid-template-columns: 1fr;
  }

  .catalog-filters,
  .site-search {
    flex-direction: column;
  }

  .site-hero__actions,
  .future-action__buttons,
  .inline-links {
    align-items: stretch;
    flex-direction: column;
  }

  .catalog-category-browser summary,
  .category-tree__summary,
  .category-tree__leaf {
    align-items: flex-start;
    flex-direction: column;
  }

  .catalog-category-browser__all {
    width: 100%;
  }

  .category-tree__node--depth-1,
  .category-tree__node--depth-2,
  .category-tree__node--depth-3 {
    margin-left: 0.45rem;
  }

  .category-tree__children {
    padding-left: 0.7rem;
  }

  .category-tree__count,
  .category-tree__leaf-count {
    text-align: left;
  }

  .button-link,
  .future-action button,
  .future-action__buttons form,
  .future-action__buttons form button {
    width: 100%;
  }

  .catalog-filters label {
    min-width: 0;
  }

  .site-brand__copy small {
    display: none;
  }

  .site-hero__copy h1 {
    max-width: none;
  }
}

/* LOT 1 — fondations visuelles du site public */
:root {
  --site-bg: #f3eee4;
  --site-surface: #fffdf8;
  --site-surface-strong: #ffffff;
  --site-border: rgba(57, 47, 36, 0.14);
  --site-text: #29251f;
  --site-muted: #665e53;
  --site-accent: #a94f32;
  --site-accent-deep: #7d3824;
  --site-accent-soft: #efd7ca;
  --site-forest: #29473d;
  --site-shadow: 0 14px 36px rgba(46, 37, 27, 0.08);
  --site-shadow-hover: 0 20px 44px rgba(46, 37, 27, 0.13);
  --site-width: min(1200px, calc(100vw - 3rem));
  --site-reading-width: 74ch;
}

body {
  background: linear-gradient(180deg, #fbf8f1 0, var(--site-bg) 55%, #eee6d8 100%);
  font-size: 1rem;
  line-height: 1.55;
}

:where(a, button, input, select, summary):focus-visible {
  outline: 3px solid #176b9b;
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.6rem;
  left: 0.6rem;
  padding: 0.8rem 1rem;
  border-radius: 0.5rem;
  background: #fff;
  color: #111;
  transform: translateY(-160%);
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  background: rgba(251, 248, 241, 0.96);
  box-shadow: 0 1px 0 var(--site-border);
}

.site-header__inner { min-height: 72px; padding-block: .55rem; }
.site-brand__logo, .site-brand__mark { width: 50px; height: 50px; border-radius: 50%; }
.site-brand__copy strong { font-size: clamp(1rem, 2vw, 1.25rem); letter-spacing: 0.01em; }
.site-brand__copy small { font-size: 0.78rem; }
.site-nav { flex-wrap: nowrap; }
.site-nav__link { min-height: 42px; display: inline-flex; align-items: center; padding: .65rem .82rem; font-size: .94rem; font-weight: 650; }
.site-nav__link:hover, .site-nav__link.is-active, .site-nav__link[aria-current="page"] {
  color: var(--site-forest);
  background: #e3ebe5;
}

.site-menu-toggle {
  display: none;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  gap: 0.55rem;
  border: 1px solid var(--site-border);
  border-radius: 999px;
  padding: 0.65rem 0.9rem;
  background: var(--site-surface);
  color: var(--site-text);
  font-weight: 700;
}

.site-menu-toggle__icon,
.site-menu-toggle__icon::before,
.site-menu-toggle__icon::after {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
}
.site-menu-toggle__icon { position: relative; }
.site-menu-toggle__icon::before, .site-menu-toggle__icon::after { content: ""; position: absolute; left: 0; }
.site-menu-toggle__icon::before { top: -6px; }
.site-menu-toggle__icon::after { top: 6px; }

.site-main { padding-top: clamp(1.15rem, 2.6vw, 2.25rem); padding-bottom: clamp(3rem, 6vw, 5rem); }
.page-intro {
  max-width: 880px;
  margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
  padding: clamp(1.15rem, 2.4vw, 1.8rem) clamp(1.25rem, 3vw, 2rem);
  border: 1px solid var(--site-border);
  border-left: 4px solid var(--site-accent);
  border-radius: 0 var(--site-radius-lg) var(--site-radius-lg) 0;
  background: rgba(255, 253, 248, 0.72);
}
.page-intro h1, .home-hero h1 { margin: 0 0 0.75rem; font-size: clamp(2rem, 4.7vw, 4.25rem); line-height: 1.02; letter-spacing: -.025em; }
.page-intro p { margin: 0; color: var(--site-muted); font-size: 1.08rem; }

.home-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  min-height: 470px;
  overflow: hidden;
  border-radius: 34px;
  background: #e8dfd0;
  box-shadow: var(--site-shadow);
}
.home-hero__copy { align-self: center; padding: clamp(1.75rem, 4.5vw, 3.75rem); }
.home-hero__lead { max-width: 650px; color: var(--site-muted); font-size: clamp(1.05rem, 2vw, 1.28rem); line-height: 1.65; }
.home-hero__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.75rem; }
.home-hero__visual { min-height: 320px; background: #c7b49c; }
.home-hero__visual > img { width: 100%; height: 100%; object-fit: cover; }
.home-hero__still-life { position: relative; width: 100%; height: 100%; min-height: 430px; overflow: hidden; }
.home-hero__still-life span { position: absolute; display: block; border-radius: 50% 50% 42% 42%; box-shadow: 0 25px 45px rgba(43, 34, 25, 0.2); }
.home-hero__still-life span:nth-child(1) { width: 42%; aspect-ratio: 1; left: 12%; bottom: 14%; background: #9c553a; }
.home-hero__still-life span:nth-child(2) { width: 29%; height: 54%; right: 13%; bottom: 13%; background: #35594c; border-radius: 46% 46% 22% 22%; }
.home-hero__still-life span:nth-child(3) { width: 56%; height: 17%; left: 24%; bottom: 8%; background: #d8c8b1; border-radius: 50%; }

.section-eyebrow { margin: 0 0 0.6rem; color: var(--site-accent-deep); font-size: 0.76rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; }
.section-heading { align-items: flex-end; }
.section-heading > div { min-width: 0; }
.section-heading__text { max-width: 62ch; margin: .55rem 0 0; color: var(--site-muted); }
.section-heading h2, .home-story h2 { margin: 0; font-size: clamp(1.8rem, 3.4vw, 3rem); }
.site-section { margin-top: clamp(2.25rem, 5vw, 4.75rem); }

.catalog-grid { gap: clamp(0.9rem, 2vw, 1.5rem); }
.catalog-card { border: 1px solid rgba(57, 47, 36, .08); border-radius: 18px; background: var(--site-surface-strong); box-shadow: 0 8px 24px rgba(43, 34, 25, 0.07); transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease; }
.catalog-card:hover { transform: translateY(-3px); border-color: rgba(169, 79, 50, .2); box-shadow: var(--site-shadow-hover); }
.catalog-card__media { position: relative; aspect-ratio: 4 / 3; background: #ebe5da; }
.catalog-card__media img { width: 100%; height: 100%; object-fit: cover; }
.catalog-card__availability { position: absolute; left: 0.65rem; bottom: 0.65rem; padding: 0.35rem 0.6rem; border-radius: 999px; background: rgba(255,255,255,.94); font-size: .72rem; font-weight: 800; }
.catalog-card__body { gap: .55rem; padding: .9rem .95rem 1rem; }
.catalog-card__reference { margin: 0 0 .45rem; color: var(--site-muted); font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; }
.catalog-card__title { margin: 0; font-size: 1.15rem; line-height: 1.25; }
.catalog-card__summary { margin: .35rem 0 0; color: var(--site-muted); font-size: .88rem; line-height: 1.45; }
.catalog-card__meta { margin-top: .6rem; padding-top: .7rem; border-top: 1px solid var(--site-border); }

.home-category-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0.85rem; }
.home-category-card { display: flex; align-items: center; justify-content: space-between; gap: .8rem; min-height: 82px; padding: 1rem 1.1rem; border: 1px solid var(--site-border); border-radius: 16px; background: var(--site-surface); transition: transform 160ms ease, border-color 160ms ease, background-color 160ms ease; }
.home-category-card span { font-family: var(--site-heading-font); font-size: 1.15rem; font-weight: 700; }
.home-category-card small { color: var(--site-muted); white-space: nowrap; }
.home-category-card:hover { transform: translateY(-2px); border-color: var(--site-accent); background: #fff; }

.home-story { display: grid; grid-template-columns: minmax(230px,.7fr) minmax(0,1fr); gap: 2rem; padding: clamp(1.5rem,4vw,3.5rem); border-radius: 24px; color: #f8f3e9; background: var(--site-forest); }
.home-story p:last-child { max-width: 700px; margin: 0; color: #dce6e0; font-size: 1.08rem; line-height: 1.7; }
.home-story .section-eyebrow { color: #edb397; }
.home-facts { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; overflow: hidden; border: 1px solid var(--site-border); border-radius: 18px; background: var(--site-border); }
.home-facts article { display: flex; flex-direction: column; gap: .35rem; padding: 1.35rem; background: var(--site-surface); }
.home-facts span { color: var(--site-muted); }

.pagination { justify-content: space-between; gap: .7rem; }
.pagination__pages { display: flex; gap: .35rem; align-items: center; }
.pagination__direction, .pagination__link { min-width: 44px; min-height: 44px; display: inline-flex; align-items: center; justify-content: center; padding: .6rem .8rem; border-radius: 999px; }
.pagination__direction { border: 1px solid var(--site-border); }
.pagination .is-disabled { opacity: .45; }
.pagination__ellipsis { padding: .4rem; }

.object-gallery__main img { width: 100%; height: auto; object-fit: contain; }
.object-gallery__thumb { min-width: 68px; min-height: 68px; padding: 3px; border: 2px solid transparent; }
.object-gallery__thumb.is-active { border-color: var(--site-accent); }

.site-footer { margin-top: 0; color: #eee8dc; background: #24382f; }
.site-footer__inner { display: grid; grid-template-columns: 1.2fr .8fr .8fr; align-items: start; gap: 2rem; padding: 3rem 0 1.5rem; color: inherit; }
.site-footer__brand { max-width: 410px; }
.site-footer__brand strong, .site-footer__nav strong, .site-footer__contact strong { display: block; margin-bottom: .75rem; color: #fff; }
.site-footer__brand p { color: #cbd5cf; line-height: 1.6; }
.site-footer__nav, .site-footer__contact { display: flex; flex-direction: column; gap: .6rem; }
.site-footer__nav a:hover, .site-footer__contact a:hover { text-decoration: underline; }
.site-footer__bottom { grid-column: 1 / -1; display: flex; justify-content: space-between; gap: 1rem; padding-top: 1.3rem; border-top: 1px solid rgba(255,255,255,.15); color: #bfc9c3; font-size: .85rem; }

@media (max-width: 900px) {
  .site-header__inner { position: relative; flex-direction: row; align-items: center; }
  .site-menu-toggle { display: inline-flex; margin-left: auto; }
  .site-header.is-menu-ready .site-nav { display: none; }
  .site-header.is-menu-ready .site-nav.is-open { position: absolute; top: calc(100% + 1px); right: 0; left: 0; display: flex; flex-direction: column; align-items: stretch; padding: .75rem; border: 1px solid var(--site-border); border-radius: 0 0 16px 16px; background: #fffdf8; box-shadow: var(--site-shadow); }
  .site-header.is-menu-ready .site-nav__link { justify-content: flex-start; }
  .home-hero { grid-template-columns: 1fr; min-height: 0; }
  .home-hero__visual { order: -1; min-height: 280px; }
  .home-hero__still-life { min-height: 280px; }
  .home-category-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .site-footer__inner { grid-template-columns: 1fr 1fr; }
  .site-footer__brand, .site-footer__bottom { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  :root { --site-width: min(100vw - 1.25rem, 1200px); }
  .site-header__inner { min-height: 68px; }
  .site-brand__logo, .site-brand__mark { width: 46px; height: 46px; }
  .site-menu-toggle { padding-inline: .75rem; }
  .home-hero { border-radius: 20px; }
  .home-hero__copy { padding: 1.4rem; }
  .home-hero__visual { min-height: 220px; }
  .home-hero__still-life { min-height: 220px; }
  .page-intro { border-radius: 0 16px 16px 0; }
  .home-category-grid, .home-story, .home-facts { grid-template-columns: 1fr; }
  .section-heading { flex-direction: row; align-items: flex-end; }
  .pagination { flex-wrap: wrap; justify-content: center; }
  .pagination__pages { order: -1; width: 100%; justify-content: center; }
  .site-footer__inner { grid-template-columns: 1fr; }
  .site-footer__brand, .site-footer__bottom { grid-column: auto; }
  .site-footer__bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

/* LOT 1.1 — explorateur hiérarchique des catégories */
.category-explorer {
  max-width: 940px;
  margin-inline: auto;
}

.category-explorer__toolbar {
  display: flex;
  justify-content: flex-end;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.category-explorer__toolbar button {
  min-height: 44px;
  padding: 0.65rem 1rem;
  border: 1px solid var(--site-border);
  border-radius: 999px;
  background: var(--site-surface);
  color: var(--site-forest);
  font-weight: 750;
  cursor: pointer;
}

.category-explorer__toolbar button:hover {
  border-color: var(--site-accent);
  background: #fff;
}

.category-explorer__roots,
.category-explorer__list {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.category-explorer__roots {
  gap: 0.9rem;
}

.category-explorer__item {
  min-width: 0;
}

.category-explorer__branch {
  overflow: clip;
  border-bottom: 1px solid var(--site-border);
}

.category-explorer__roots > .category-explorer__item > .category-explorer__branch {
  border: 1px solid var(--site-border);
  border-radius: 18px;
  background: var(--site-surface);
  box-shadow: 0 7px 20px rgba(43, 34, 25, 0.055);
}

.category-explorer summary,
.category-explorer__row {
  min-height: 54px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.8rem;
  padding: 0.68rem 1rem;
}

.category-explorer summary {
  cursor: pointer;
  list-style: none;
  font-weight: 750;
}

.category-explorer summary::-webkit-details-marker {
  display: none;
}

.category-explorer__chevron {
  width: 0.65rem;
  height: 0.65rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
  transition: transform 150ms ease;
}

.category-explorer__branch[open] > summary .category-explorer__chevron {
  transform: rotate(45deg);
}

.category-explorer__label {
  min-width: 0;
  overflow-wrap: anywhere;
}

.category-explorer__summary-meta {
  display: grid;
  justify-items: end;
  gap: 0.1rem;
  color: var(--site-muted);
  font-size: 0.83rem;
  font-weight: 600;
}

.category-explorer__count {
  white-space: nowrap;
}

.category-explorer__child-count {
  font-size: 0.75rem;
}

.category-explorer__branch-body {
  padding: 0 1rem 0.8rem calc(1rem + var(--category-indent, 0rem));
}

.category-explorer__all-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  margin-left: 1.4rem;
  color: var(--site-accent-deep);
  font-size: 0.88rem;
  font-weight: 750;
}

.category-explorer__row {
  grid-template-columns: minmax(0, 1fr) auto;
  margin-left: var(--category-indent, 0rem);
  border-bottom: 1px solid rgba(57, 47, 36, 0.1);
}

.category-explorer__label {
  min-width: 0;
  overflow-wrap: anywhere;
}

.category-explorer__row:hover {
  color: var(--site-accent-deep);
  background: rgba(239, 215, 202, 0.24);
}

.category-explorer__orphans {
  margin-top: 2.5rem;
  padding: 1.25rem;
  border-radius: 16px;
  background: rgba(255, 253, 248, 0.7);
}

.category-explorer__orphans > p {
  color: var(--site-muted);
}

.category-breadcrumb {
  margin-bottom: 1.5rem;
  color: var(--site-muted);
  font-size: 0.9rem;
}

.category-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.category-breadcrumb li:not(:last-child)::after {
  content: "›";
  margin-left: 0.4rem;
  color: #9b9184;
}

.category-breadcrumb a {
  color: var(--site-accent-deep);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

.category-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.category-feature-card {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  min-height: 112px;
  overflow: hidden;
  border: 1px solid var(--site-border);
  border-radius: 18px;
  background: var(--site-surface);
  box-shadow: 0 7px 20px rgba(43, 34, 25, .055);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}
.category-feature-card:hover,
.category-feature-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(169, 79, 50, .42);
  box-shadow: var(--site-shadow);
}
.category-feature-card__media {
  min-width: 0;
  background: linear-gradient(145deg, rgba(41, 71, 61, .12), rgba(169, 79, 50, .12));
}
.category-feature-card__media img { width: 100%; height: 100%; object-fit: cover; }
.category-feature-card__fallback {
  display: block;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 35% 30%, rgba(255,255,255,.5), transparent 28%), linear-gradient(145deg, rgba(41,71,61,.2), rgba(169,79,50,.18));
}
.category-feature-card__body {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  gap: .35rem;
  padding: .9rem 1rem;
}
.category-feature-card__body strong {
  font-family: var(--site-heading-font);
  font-size: 1.18rem;
  line-height: 1.2;
  overflow-wrap: anywhere;
}
.category-feature-card__body small { color: var(--site-muted); }
.category-explorer__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}
.category-explorer__heading h2 { margin: 0; font-size: clamp(1.45rem, 2.8vw, 2rem); }
@media (max-width: 900px) {
.category-feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .category-feature-grid { grid-template-columns: 1fr; }
  .category-feature-card { grid-template-columns: 88px minmax(0, 1fr); min-height: 96px; }
  .category-explorer__heading { align-items: stretch; flex-direction: column; }
  .category-explorer__toolbar {
    justify-content: stretch;
  }
  .category-explorer__toolbar button {
    flex: 1 1 0;
  }
  .category-explorer summary,
  .category-explorer__row {
    min-height: 54px;
    gap: 0.55rem;
    padding-inline: 0.75rem;
  }
  .category-explorer__summary-meta {
    font-size: 0.78rem;
  }
  .category-explorer__child-count {
    display: none;
  }
  .category-explorer__branch-body {
    padding-right: 0.35rem;
    padding-left: min(calc(0.5rem + var(--category-indent, 0rem)), 1.4rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .category-explorer__chevron {
    transition: none;
  }
}


.catalog-experience { position: relative; }
.catalog-layout { display: grid; grid-template-columns: minmax(220px, 252px) minmax(0, 1fr); gap: clamp(1rem, 2vw, 1.5rem); align-items: start; min-width: 0; }
.catalog-filters { position: sticky; top: 5.5rem; width: 100%; max-width: 100%; min-width: 0; box-sizing: border-box; border: 1px solid var(--site-border, #d8d2c6); border-radius: 1rem; background: var(--site-surface, #fff); padding: 1rem; box-shadow: 0 8px 24px rgba(43, 34, 25, .055); }
.catalog-filters__head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 1rem; }
.catalog-filters__head h2 { margin: 0; font-size: 1.15rem; }
.catalog-filters__head [data-filter-close] { display: none; }
.catalog-filters form, .catalog-filters label { display: grid; min-width: 0; max-width: 100%; gap: .4rem; }
.catalog-filters form { gap: .85rem; }
.catalog-filters input, .catalog-filters select { width: 100%; max-width: 100%; min-width: 0; min-height: 2.75rem; box-sizing: border-box; border: 1px solid var(--color-border, #bcb5a8); border-radius: .6rem; background: #fff; color: inherit; padding: .65rem .75rem; font: inherit; }
.catalog-price-fields { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); min-width: 0; max-width: 100%; gap: .6rem; }
.catalog-filter-actions { display: grid; gap: .6rem; }
.catalog-filter-actions button { width: 100%; max-width: 100%; box-sizing: border-box; }
.catalog-filter-toggle { display: none; }
.catalog-results { min-width: 0; }
.catalog-experience .catalog-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.catalog-grid > .empty-state { grid-column: 1 / -1; }
.catalog-results__head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 44px; margin-bottom: .8rem; }
.active-filters { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: .45rem; }
.active-filters button { border: 1px solid #a8a092; border-radius: 999px; background: #fff; padding: .4rem .7rem; cursor: pointer; }
.catalog-form-error { margin: 0; color: #9d2c1d; font-weight: 700; }
.catalog-experience.is-loading .catalog-results { opacity: .62; }
.category-children { margin: 0 auto 1.25rem; max-width: var(--site-max, 1200px); padding: 0 1rem; }
.category-children h2 { font-size: 1.1rem; }
.category-children ul { display: flex; gap: .65rem; padding: .15rem 0 .4rem; overflow-x: auto; overscroll-behavior-inline: contain; list-style: none; }
.category-children a { display: grid; min-width: 10rem; border: 1px solid var(--color-border, #d8d2c6); border-radius: .75rem; padding: .75rem; text-decoration: none; }
.category-children small { color: var(--color-muted, #666); }
.catalog-noscript { padding: .8rem; border-radius: .6rem; background: #fff4d5; }
body.has-filter-drawer { overflow: hidden; }
@media (min-width: 1600px) {
  .catalog-experience .catalog-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (max-width: 1024px) {
  .catalog-experience .catalog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .catalog-experience .catalog-grid { grid-template-columns: 1fr; }
}
@media (max-width: 767px) {
  .catalog-filter-toggle { display: inline-flex; align-items: center; min-height: 2.75rem; margin-bottom: 1rem; border: 1px solid #3b5b45; border-radius: 999px; background: #fff; padding: .6rem 1rem; font: inherit; font-weight: 700; }
  .catalog-layout { display: block; }
  .catalog-filters { display: none; position: fixed; z-index: 100; inset: 0; overflow-y: auto; overscroll-behavior: contain; border: 0; border-radius: 0; padding: 1rem max(1rem, env(safe-area-inset-right)) calc(2rem + env(safe-area-inset-bottom)) max(1rem, env(safe-area-inset-left)); box-shadow: none; }
  .catalog-filters.is-open { display: block; }
  .catalog-filters__head [data-filter-close] { display: inline-flex; min-height: 2.5rem; align-items: center; }
  .catalog-results__head { display: grid; }
  .active-filters { justify-content: flex-start; }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .catalog-layout { grid-template-columns: 218px minmax(0, 1fr); gap: 1rem; }
  .catalog-price-fields { grid-template-columns: minmax(0, 1fr); }
}
@media (max-width: 420px) {
  .catalog-price-fields { grid-template-columns: minmax(0, 1fr); }
}

html { overflow-x: hidden; }
.catalog-card__title, .object-reference, .category-explorer__label { overflow-wrap: anywhere; }
.object-price { font-variant-numeric: tabular-nums; overflow-wrap: anywhere; }
:focus-visible { outline: 3px solid #1f6f43; outline-offset: 3px; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
@media print {
  .site-header, .site-footer, .skip-link, .object-gallery__thumbs, .future-action { display: none !important; }
  .site-main, .site-section, .object-page, .content-card { width: 100% !important; max-width: none !important; margin: 0 !important; box-shadow: none !important; border: 0 !important; }
  a { color: #000; text-decoration: none; }
}
.category-explorer__item[data-depth="1"] { --category-indent: .65rem; }
.category-explorer__item[data-depth="2"] { --category-indent: 1.3rem; }
.category-explorer__item[data-depth="3"], .category-explorer__item[data-depth="4"] { --category-indent: 1.95rem; }


.object-return-row { display: flex; justify-content: space-between; align-items: center; gap: 1rem; margin: 0 auto 1rem; }
.object-return { display: inline-flex; align-items: center; min-height: 44px; }
.object-product { display: grid; grid-template-columns: minmax(0, .9fr) minmax(320px, 1.1fr); gap: clamp(1.15rem, 2.5vw, 2.15rem); align-items: start; }
.object-product > * { min-width: 0; }
.object-summary { position: sticky; top: 5.75rem; display: grid; gap: .8rem; padding: clamp(1.05rem, 1.7vw, 1.45rem); }
.object-summary h1 { margin: 0; font-size: clamp(1.45rem, 2.05vw, 2rem); line-height: 1.18; letter-spacing: -.015em; overflow-wrap: anywhere; }
.object-summary__reference { margin: 0; color: var(--site-muted); font-size: .88rem; letter-spacing: .04em; }
.object-summary__category { margin: 0; color: var(--site-muted); }
.object-summary__actions { display: flex; flex-wrap: wrap; gap: .75rem; }
.object-summary__actions > * { min-height: 46px; }
.object-share-status { min-height: 1.5em; margin: -.45rem 0 0; color: var(--site-muted); font-size: .9rem; }
.object-detail-list { display: grid; gap: .55rem; margin: 0; }
.object-detail-list > div { display: grid; grid-template-columns: minmax(90px, .4fr) minmax(0, 1fr); gap: .7rem; padding-top: .55rem; border-top: 1px solid var(--site-border); }
.object-detail-list dt { color: var(--site-muted); }
.object-detail-list dd { margin: 0; font-weight: 650; overflow-wrap: anywhere; }
.object-description { margin-top: 1.5rem; }
.object-description .rich-copy { max-width: 76ch; color: var(--site-text); white-space: normal; overflow-wrap: anywhere; }
.object-description .rich-copy p { white-space: pre-wrap; }
.object-gallery { position: static; top: auto; padding: clamp(.65rem, 1.25vw, .85rem); }
.object-gallery__stage { position: relative; }
.object-gallery__main { min-height: clamp(210px, 26vw, 300px); aspect-ratio: auto; }
.object-gallery__zoom { position: relative; display: flex; align-items: center; justify-content: center; width: 100%; padding: clamp(.25rem, 1vw, .65rem); color: inherit; }
.object-gallery__zoom > #object-main-image { display: block; width: 100%; height: auto; max-width: 100%; max-height: min(72vh, 760px); object-fit: contain; object-position: center; }
.object-gallery__zoom-label { position: absolute; right: .75rem; bottom: .75rem; padding: .45rem .7rem; border-radius: 999px; color: #fff; background: rgba(20, 35, 29, .78); font-size: .85rem; }
.object-gallery__toolbar { display: flex; align-items: center; justify-content: space-between; gap: .65rem; margin-top: .55rem; }
.object-gallery__controls { display: flex; gap: .5rem; }
.object-gallery__control, .object-gallery__dialog-control, .object-gallery__dialog-close { min-width: 44px; min-height: 44px; border: 1px solid var(--site-border); border-radius: 999px; background: var(--site-surface); color: var(--site-text); cursor: pointer; }
.object-gallery__position { margin: 0; color: var(--site-muted); font-size: .92rem; font-variant-numeric: tabular-nums; }
.object-gallery__thumbs { flex-wrap: nowrap; overflow-x: auto; padding: .15rem .1rem .35rem; scroll-snap-type: x proximity; }
.object-gallery__thumb { display: grid; flex: 0 0 68px; width: 68px; height: 68px; scroll-snap-align: start; }
.object-gallery__thumb[aria-current="true"] { border-color: var(--site-accent); box-shadow: 0 0 0 2px rgba(181, 92, 54, .18); }
.object-gallery__thumb:focus-visible, .object-gallery__zoom:focus-visible, .object-gallery__control:focus-visible, .object-gallery__dialog button:focus-visible { outline: 3px solid var(--site-accent); outline-offset: 3px; }
.object-gallery__dialog { width: min(96vw, 1360px); max-width: 1360px; height: min(94vh, 980px); max-height: 94vh; padding: 0; border: 0; border-radius: 16px; color: var(--site-text); background: #111814; box-shadow: 0 28px 90px rgba(0, 0, 0, .55); }
.object-gallery__dialog::backdrop { background: rgba(5, 10, 8, .9); }
.object-gallery__dialog-shell { display: grid; grid-template-rows: auto minmax(0, 1fr) auto; width: 100%; height: 100%; padding: .55rem; }
.object-gallery__dialog-head, .object-gallery__dialog-foot { display: flex; align-items: center; justify-content: space-between; gap: .8rem; }
.object-gallery__dialog-head { min-height: 46px; padding: 0 .1rem .4rem .4rem; color: #f7faf8; }
.object-gallery__dialog-head h2 { margin: 0; font-size: 1rem; font-weight: 650; }
.object-gallery__dialog-media { position: relative; display: grid; min-width: 0; min-height: 0; place-items: center; overflow: hidden; border-radius: 9px; background: #080d0b; overscroll-behavior: contain; }
.object-gallery__dialog-media img { position: absolute; inset: 0; max-width: 100%; max-height: 100%; width: auto; height: auto; margin: auto; object-fit: contain; cursor: zoom-in; transition: width .18s ease; }
.object-gallery__dialog-media.is-zoomed { display: block; overflow: auto; }
.object-gallery__dialog-media.is-zoomed img.is-zoomed { position: static; display: block; width: 140%; max-width: none; max-height: none; height: auto; margin: auto; cursor: zoom-out; }
.object-gallery__dialog-foot { min-height: 52px; padding: .4rem .15rem 0; color: #f7faf8; }
.object-gallery__dialog-navigation { display: flex; gap: .5rem; min-width: 104px; }
.object-gallery__dialog-foot .object-gallery__position { color: #f7faf8; font-weight: 700; letter-spacing: .01em; }
.object-gallery__dialog .object-gallery__dialog-control, .object-gallery__dialog .object-gallery__dialog-close, .object-gallery__dialog .object-gallery__dialog-zoom { border-color: rgba(255, 255, 255, .24); background: rgba(255, 255, 255, .1); color: #fff; }
.object-gallery__dialog .object-gallery__dialog-control:hover, .object-gallery__dialog .object-gallery__dialog-close:hover, .object-gallery__dialog .object-gallery__dialog-zoom:hover { background: rgba(255, 255, 255, .2); }
.object-gallery__dialog-zoom { min-height: 44px; padding: 0 .9rem; border-radius: 999px; cursor: pointer; }
.object-gallery__dialog-zoom[aria-pressed="true"] { background: #fff; color: #111814; }
body.has-gallery-dialog { overflow: hidden; }
.object-neighbors { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; margin-top: 1.5rem; }
.object-neighbor { display: grid; gap: .25rem; min-height: 74px; padding: 1rem; border: 1px solid var(--site-border); border-radius: var(--site-radius-md); background: var(--site-surface); }
.object-neighbor--next { text-align: right; }
.object-neighbor small { color: var(--site-muted); }
.object-related { margin-top: 2rem; }
.object-related .catalog-card__summary { display: none; }
@media (max-width: 900px) {
  .object-product { grid-template-columns: 1fr; }
  .object-summary { position: static; top: auto; }
}
@media (max-width: 640px) {
  .object-return-row { align-items: flex-start; flex-direction: column; }
  .object-product { gap: 1rem; }
  .object-gallery__zoom-label { right: .5rem; bottom: .5rem; }
  .object-summary__actions { display: grid; }
  .object-summary__actions > * { width: 100%; justify-content: center; }
  .object-detail-list > div { grid-template-columns: 1fr; gap: .25rem; }
  .object-neighbors { grid-template-columns: 1fr; }
  .object-related .catalog-card:nth-child(n + 5) { display: none; }
  .object-neighbor--next { text-align: left; }
  .object-gallery__dialog { width: 100vw; height: 100vh; max-height: 100vh; border-radius: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .object-gallery *, .object-gallery__dialog * { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}
@media print {
  .object-return-row, .object-summary__actions, .object-neighbors, .object-gallery__toolbar, .object-gallery__dialog { display: none !important; }
  .object-product { grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); }
  .object-gallery__dialog-shell { padding: .4rem; }
  .object-gallery__dialog-head { padding-left: .3rem; }
  .object-gallery__dialog-foot { gap: .45rem; }
  .object-summary { position: static; }
}


/* LOT 6 — pages légales du site public */
.legal-breadcrumb { margin: 0 0 1.2rem; color: var(--site-muted); font-size: .9rem; }
.legal-breadcrumb ol { display: flex; flex-wrap: wrap; gap: .35rem .55rem; margin: 0; padding: 0; list-style: none; }
.legal-breadcrumb li:not(:last-child)::after { content: "›"; margin-left: .55rem; color: color-mix(in srgb, var(--site-muted) 65%, transparent); }
.legal-breadcrumb a { text-decoration: underline; text-underline-offset: .2em; }
.legal-layout { width: min(100%, 860px); margin-inline: auto; }
.legal-layout .page-intro { max-width: 720px; }
.legal-document { display: grid; gap: .85rem; }
.legal-section { padding: clamp(1.1rem, 2.25vw, 1.55rem); }
.legal-section h2 { margin: 0 0 .85rem; font-size: clamp(1.35rem, 2.4vw, 1.75rem); }
.legal-section h3 { margin: 1.2rem 0 .55rem; font-size: 1.08rem; }
.legal-section p, .legal-section li, .legal-section dd { line-height: 1.7; overflow-wrap: anywhere; }
.legal-section p:last-child, .legal-section ul:last-child, .legal-section dl:last-child { margin-bottom: 0; }
.legal-section ul { padding-left: 1.25rem; }
.legal-details { display: grid; gap: .8rem; margin: 0; }
.legal-details div { display: grid; grid-template-columns: minmax(150px, .45fr) minmax(0, 1fr); gap: .35rem 1rem; padding-bottom: .8rem; border-bottom: 1px solid var(--site-border); }
.legal-details div:last-child { padding-bottom: 0; border-bottom: 0; }
.legal-details dt { font-weight: 750; color: var(--site-forest); }
.legal-details dd { margin: 0; }
.legal-address { font-style: normal; line-height: 1.7; }
.legal-updated { margin: 0 0 1.25rem; color: var(--site-muted); font-size: .9rem; }
.legal-section a { color: var(--site-accent-deep); font-weight: 650; text-decoration: underline; text-underline-offset: .2em; }
.legal-mediator-pending { border-inline-start: 4px solid var(--site-accent); }
.site-footer__legal { display: flex; flex-direction: column; gap: .6rem; }
.site-footer__legal strong { display: block; margin-bottom: .15rem; color: #fff; }
.site-footer__legal a:hover { text-decoration: underline; }
@media (min-width: 901px) { .site-footer__inner { grid-template-columns: 1.2fr .75fr .9fr 1.05fr; } }
@media (max-width: 640px) {
  .legal-layout { width: 100%; }
  .legal-details div { grid-template-columns: 1fr; }
  .legal-section { padding: 1rem; }
}
