/* ─────────────────────────────────────────────────────────────────────────────
   GATTO / QiTi / INLINE — Galerie silencieuse
   Palette : noir matière · blanc chaud · ambre doré · gris lumineux
───────────────────────────────────────────────────────────────────────────── */

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

:root {
  --bg:          #0c0c0e;
  --bg-2:        #101012;
  --surface:     #161618;
  --border:      rgba(255,255,255,0.055);
  --text:        #ede8df;
  --muted:       #9a9690;
  --dim:         #58564f;
  --gold:        #c9a84c;
  --gold-light:  #e0c87a;
  --gold-dim:    rgba(201,168,76,0.13);
  --gold-glow:   rgba(201,168,76,0.055);
  --white-warm:  #f6f2ea;
  --radius:      2px;
  --ease-slow:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-long:   cubic-bezier(0.16, 1, 0.3, 1);
  --t-med:       500ms;
  --t-long:      800ms;
  --t-xlong:     1200ms;
}

/* ── Reset ─────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 300;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ── Layout ────────────────────────────────────────────────────────────── */
.wrap        { width: min(1140px, 90vw); margin-inline: auto; }
.wrap--narrow { width: min(720px, 86vw); margin-inline: auto; }

/* ── Navigation ────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 28px 0;
  transition: padding var(--t-med) var(--ease-slow),
              background var(--t-med) var(--ease-slow);
}
.nav.scrolled {
  padding: 18px 0;
  background: rgba(12,12,14,0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  font-weight: 400;
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--white-warm);
  opacity: 0.9;
  transition: opacity var(--t-med);
  width: 90px;
}
.nav__logo:hover { opacity: 1; }
.nav__links { display: flex; gap: 36px; list-style: none; }
.nav__links a {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color var(--t-med) var(--ease-slow);
}
.nav__links a:hover, .nav__links a.active { color: var(--white-warm); }

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 101;
  position: relative;
}
.nav__toggle span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--white-warm);
  transition: transform var(--t-med) var(--ease-slow), opacity var(--t-med) var(--ease-slow), width var(--t-med) var(--ease-slow);
}
.nav__toggle span:nth-child(2) { width: 70%; }
.nav__toggle[aria-expanded="true"] span { width: 100%; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

body.nav-locked { overflow: hidden; }

/* ── Hero (home) ───────────────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  /*padding-bottom: clamp(72px, 10vh, 120px);*/
  position: relative;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 65% 40%, rgba(201,168,76,0.055) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 70%, rgba(201,168,76,0.025) 0%, transparent 70%);
  pointer-events: none;
}
.hero__eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp var(--t-xlong) var(--ease-long) 200ms forwards;
}
.hero__title {
  font-size: clamp(2.8rem, 6.5vw, 6rem);
  font-weight: 300;
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--white-warm);
  max-width: 13ch;
  opacity: 0;
  animation: fadeUp var(--t-xlong) var(--ease-long) 400ms forwards;
}
.hero__title em { font-style: italic; color: var(--gold); }
.hero__sub {
  margin-top: 32px;
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--muted);
  max-width: 42ch;
  line-height: 1.75;
  opacity: 0;
  animation: fadeUp var(--t-xlong) var(--ease-long) 600ms forwards;
}
.hero__cta {
  margin-top: 52px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp var(--t-xlong) var(--ease-long) 800ms forwards;
}
.hero__scroll {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeIn 800ms var(--ease-slow) 1400ms forwards;
}
.hero__scroll span {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dim);
}
.hero__scroll__line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--dim), transparent);
  animation: scrollLine 2s var(--ease-slow) infinite;
}

/* ── Buttons ───────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 14px 28px;
  border: 1px solid var(--border);
  color: var(--muted);
  cursor: pointer;
  background: transparent;
  font-family: inherit;
  transition: color var(--t-med) var(--ease-slow),
              border-color var(--t-med) var(--ease-slow),
              background var(--t-med) var(--ease-slow);
}
.btn:hover { color: var(--white-warm); border-color: rgba(255,255,255,0.18); }
.btn--gold {
  border-color: var(--gold-dim);
  color: var(--gold);
  background: var(--gold-glow);
}
.btn--gold:hover {
  background: rgba(201,168,76,0.1);
  border-color: rgba(201,168,76,0.35);
  color: var(--gold-light);
}
.btn--ghost { border-color: transparent; color: var(--dim); }
.btn--ghost:hover { color: var(--muted); border-color: var(--border); }

/* ── Sections ──────────────────────────────────────────────────────────── */
.section { padding: clamp(80px, 12vw, 80px) 0; }
.section--alt { background: var(--bg-2); }
.section__eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.section__title {
  font-size: clamp(1.8rem, 3.8vw, 3.2rem);
  font-weight: 300;
  letter-spacing: -0.015em;
  line-height: 1.12;
  color: var(--white-warm);
  max-width: 20ch;
}
.section__body {
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 48ch;
  line-height: 1.85;
  margin-top: 24px;
}
.section__rule { width: 40px; height: 1px; background: var(--gold-dim); margin: 40px 0; }
/* ── Background images ───────────────────────────────────────────────────── */
#background_Qiti {
  background-image: url('./img/Qiti_BG_accueil.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center left;
}
#background_atelier {
  background-image: url('./img/Qiti_BG_Atelier.png');
  background-size: 50%;
  background-repeat: no-repeat;
  background-position: center right;
}
#dessin_bg {
  background: linear-gradient(rgba(0,0,0,0), rgba(0,0,0,1)), url('./img/Qiti_Crosquis3.jpg');
	background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

#Maquettes_bg {
  background: linear-gradient(rgba(0,0,0,0), rgba(0,0,0,1)), url('./img/Qiti_(Lixie)_socles.jpg');

	background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
#Assemblage_bg{
  background: linear-gradient(rgba(0,0,0,0), rgba(0,0,0,1)), url('./img/QiTi_(LIXIE)_assamblage.jpg');
	background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

#background_Qiti_inline {
  background-image: url('./img/QiTi_1_2.webp');
  background-size: cover;
  background-repeat: no-repeat;
  background-size: 50%;
  background-position: center right;
}
.Qiti_logo {
display: inline-block;
width: 50%;
float: left;
clear: both;
}
/* ── Manifeste ─────────────────────────────────────────────────────────── */
.manifeste { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.manifeste__quote {
  font-size: clamp(1.4rem, 2.6vw, 2.4rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.4;
  color: var(--text);
  letter-spacing: -0.01em;
}
.manifeste__quote::before { content: '\201C'; color: var(--gold); margin-right: 2px; }
.manifeste__quote::after  { content: '\201D'; color: var(--gold); margin-left:  2px; }

/* ── Features grid ─────────────────────────────────────────────────────── */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.feature {
  padding: 40px 36px;
  background: var(--surface);
  position: relative;
  overflow: hidden;
}
.feature::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
  opacity: 0;
  transition: opacity var(--t-long) var(--ease-slow);
}
.feature:hover::before { opacity: 1; }
.feature__number {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 28px;
  opacity: 0.7;
}
.feature__title { font-size: 0.9rem; font-weight: 400; letter-spacing: 0.04em; color: var(--text); margin-bottom: 14px; }
.feature__body  { font-size: 0.83rem; color: var(--dim); line-height: 1.75; }

/* ── Product hero ──────────────────────────────────────────────────────── */
.product-hero {
  min-height: 80svh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  position: relative;
}
.product-hero__label {
  display: inline-block;
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-dim);
  padding: 6px 14px;
  margin-bottom: 36px;
}
.product-hero__name {
  font-size: clamp(3.5rem, 9vw, 8rem);
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 0.95;
  color: var(--white-warm);
}
.product-hero__sub {
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  font-weight: 300;
  color: var(--muted);
  margin-top: 32px;
  max-width: 36ch;
  line-height: 1.7;
}

/* ── Halo ──────────────────────────────────────────────────────────────── */
.halo {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(ellipse at center, var(--gold-glow) 0%, transparent 70%);
  filter: blur(40px);
}

/* ── Collection grid ───────────────────────────────────────────────────── */
.collection { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; }
.collection__item {
  aspect-ratio: 4/3;
  background: var(--surface);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.collection__item:first-child { grid-column: span 2; aspect-ratio: 16/7; }
.collection__item__bg {
  position: absolute; inset: 0;
  background: var(--surface);
  transition: transform var(--t-xlong) var(--ease-long);
}
.collection__item:hover .collection__item__bg { transform: scale(1.03); }
.collection__item__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(12,12,14,0.55) 0%, transparent 50%);
}
.collection__item__info { position: absolute; bottom: 28px; left: 28px; }
.collection__item__name {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white-warm);
  margin-bottom: 4px;
}
.collection__item__desc { font-size: 0.7rem; color: var(--muted); letter-spacing: 0.06em; }

/* ── Atelier split ─────────────────────────────────────────────────────── */
.atelier-split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.atelier-image {
  aspect-ratio: 3/4;
  background: var(--surface);
  position: relative;
  overflow: hidden;
}
.atelier-image__inner {
  position: absolute; inset: 0;
  background-image: url('./img/QiTi_(LIXIE).png');
	background-size: cover;
  background-repeat: no-repeat;
  background-position: center;


}

/* ── Contact form ──────────────────────────────────────────────────────── */
.form-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 28px; }
.form-field label {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dim);
}
.form-field input,
.form-field textarea,
.form-field select {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  font-family: inherit;
  font-weight: 300;
  font-size: 0.92rem;
  padding: 10px 0;
  outline: none;
  transition: border-color var(--t-med) var(--ease-slow);
  width: 100%;
  resize: none;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus { border-color: var(--gold); }
.form-field textarea { min-height: 96px; }
select { appearance: none; cursor: pointer; }
select option { background: var(--bg); }

/* ── Footer ────────────────────────────────────────────────────────────── */
.footer { padding: 60px 0; border-top: 1px solid var(--border); }
.footer__inner { display: flex; justify-content: space-between; align-items: flex-end; }
.footer__brand {
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--dim);
}
.footer__nav { display: flex; gap: 28px; list-style: none; }
.footer__nav a {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--dim);
  transition: color var(--t-med);
}
.footer__nav a:hover { color: var(--muted); }
.footer__copy { font-size: 0.65rem; color: var(--dim); letter-spacing: 0.08em; margin-top: 28px; opacity: 0.6; }

/* ── Scroll reveal ─────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--t-long) var(--ease-long),
              transform var(--t-long) var(--ease-long);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal--delay-1 { transition-delay: 120ms; }
.reveal--delay-2 { transition-delay: 240ms; }
.reveal--delay-3 { transition-delay: 360ms; }
.reveal--delay-4 { transition-delay: 480ms; }

/* ── Misc ──────────────────────────────────────────────────────────────── */
.sep { width: 100%; height: 1px; background: var(--border); }
.divider-label { font-size: 0.62rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--dim); padding: 20px 0; }
.editions-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 8px 16px;
  border: 1px solid var(--gold-dim);
  background: var(--gold-glow);
}
.editions-badge__dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2.4s ease-in-out infinite;
}
.page-intro {
  padding-top: clamp(120px, 16vw, 180px);
  padding-bottom: clamp(60px, 8vw, 100px);
}
.page-intro--border { border-bottom: 1px solid var(--border); }

/* ── Keyframes ─────────────────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  51%  { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

/* ── Responsive ────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .manifeste    { grid-template-columns: 1fr; gap: 40px; }
  .features     { grid-template-columns: 1fr; }
  .collection   { grid-template-columns: 1fr; }
  .collection__item:first-child { grid-column: span 1; aspect-ratio: 4/3; }
  .atelier-split { grid-template-columns: 1fr; gap: 40px; }
  .footer__inner { flex-direction: column; align-items: flex-start; gap: 24px; }

  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(320px, 80vw);
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 32px;
    padding: 0 44px;
    background: rgba(10,10,11,0.98);
    backdrop-filter: blur(18px);
    border-left: 1px solid var(--border);
    transform: translateX(100%);
    transition: transform var(--t-long) var(--ease-long);
  }
  .nav__links.is-open { transform: translateX(0); }
  .nav__links a { font-size: 0.85rem; }

  #background_Qiti {
    background-image:
      linear-gradient(to top, rgba(12,12,14,0.92) 0%, rgba(12,12,14,0.6) 45%, rgba(12,12,14,0.15) 75%),
      url('./img/Qiti_BG_accueil.png');
  }
  #background_atelier {
    background-image:
      linear-gradient(rgba(12,12,14,0.55), rgba(12,12,14,0.92)),
      url('./img/Qiti_BG_Atelier.png');
    background-size: cover;
  }
}
@media (max-width: 600px) {
  .hero__title { letter-spacing: -0.01em; }
}

/* ── Produits : filtres ───────────────────────────────────────────────────── */
.filters { display: flex; gap: 12px; flex-wrap: wrap; }
.filter-btn {
  font-family: inherit;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  background: transparent;
  border: 1px solid var(--border);
  padding: 10px 18px;
  cursor: pointer;
  transition: color var(--t-med) var(--ease-slow), border-color var(--t-med) var(--ease-slow), background var(--t-med) var(--ease-slow);
}
.filter-btn:hover { color: var(--white-warm); border-color: rgba(255,255,255,0.18); }
.filter-btn.active { color: var(--gold); border-color: var(--gold-dim); background: var(--gold-glow); }
.shipping-note { margin-top: 20px; font-size: 0.8rem; color: var(--dim); max-width: 60ch; line-height: 1.7; }

/* ── Produits : grille + carte ────────────────────────────────────────────── */
.products-empty { color: var(--dim); font-size: 0.85rem; }
.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
  margin-top: 8px;
  max-width: 860px;
}
.products-grid[hidden] { display: none; }
.product-card {
  background: var(--surface);
  cursor: pointer;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity var(--t-long) var(--ease-long), transform var(--t-long) var(--ease-long),
              box-shadow var(--t-med) var(--ease-slow);
}
.product-card.is-visible { opacity: 1; transform: none; }
.product-card:hover { box-shadow: inset 0 0 0 1px var(--gold-dim); }
.product-card:focus-visible { outline: 1px solid var(--gold); outline-offset: -1px; }
.product-card__image {
  flex: 0 0 220px;
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  background-color: var(--bg-2);
  position: relative;
  transition: filter var(--t-med) var(--ease-slow);
}
/* Modèle complet (fermé à la commande) : photo grisée */
.product-card[data-status="ferme"] .product-card__image {
  filter: grayscale(1) brightness(0.65);
}
.product-card[data-status="ferme"] .product-card__name,
.product-card[data-status="ferme"] .product-card__desc { opacity: 0.6; }
.product-card__body { padding: 22px 24px 26px; flex: 1; display: flex; flex-direction: column; justify-content: center; }
.product-card__name { font-size: 0.85rem; letter-spacing: 0.04em; color: var(--white-warm); margin-bottom: 8px; }
.product-card__desc { font-size: 0.8rem; color: var(--dim); line-height: 1.6; margin-bottom: 14px; }
.product-card__price { font-size: 0.85rem; color: var(--gold); letter-spacing: 0.04em; }

@media (max-width: 640px) {
  .product-card { flex-direction: column; }
  .product-card__image { flex: none; width: 100%; aspect-ratio: 16/10; }
}

.status-badge {
  position: absolute;
  top: 14px; left: 14px;
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 12px;
  border: 1px solid;
  backdrop-filter: blur(6px);
}
.status-badge--ouvert { color: var(--gold-light); border-color: var(--gold-dim); background: rgba(201,168,76,0.12); }
.status-badge--ferme  { color: var(--dim); border-color: var(--border); background: rgba(255,255,255,0.03); }

/* ── Produits : modale fiche ──────────────────────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(8,8,9,0.82);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow-y: auto;
  padding: 5vh 20px;
  opacity: 0;
  transition: opacity var(--t-med) var(--ease-slow);
}
.modal-overlay[hidden] { display: none; }
.modal-overlay.is-open { opacity: 1; }
.modal {
  position: relative;
  width: min(920px, 100%);
  background: var(--bg-2);
  border: 1px solid var(--border);
  margin-top: 2vh;
  transform: translateY(16px);
  transition: transform var(--t-med) var(--ease-long);
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.modal-overlay.is-open .modal { transform: none; }
.modal__close {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  background: rgba(12,12,14,0.6);
  color: var(--muted);
  cursor: pointer;
  font-size: 0.9rem;
}
.modal__close:hover { color: var(--white-warm); }
.modal__body { display: contents; }
.modal__gallery { background: var(--surface); }
.modal__gallery-item { width: 100%; aspect-ratio: 3/4; background-size: cover; background-position: center; }
.modal__info { padding: 44px 40px; overflow-y: auto; }
.modal__title { font-size: clamp(1.4rem, 2.4vw, 2rem); font-weight: 300; color: var(--white-warm); margin: 16px 0 8px; }
.modal__price { font-size: 1rem; color: var(--gold); margin-bottom: 24px; }
.modal__desc { font-size: 0.88rem; color: var(--muted); line-height: 1.8; }
.modal__label { font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin: 24px 0 10px; }
.modal__materials { list-style: none; font-size: 0.82rem; color: var(--dim); line-height: 1.9; }
.modal__materials li::before { content: '— '; color: var(--gold-dim); }
.modal__dimensions, .modal__shipping, .modal__variation { font-size: 0.82rem; color: var(--dim); line-height: 1.7; }
.modal__reservation { margin-top: 32px; padding-top: 28px; border-top: 1px solid var(--border); }
.reservation-form__note { font-size: 0.72rem; color: var(--dim); margin-top: 14px; line-height: 1.6; }
.reservation-closed { display: flex; flex-direction: column; gap: 16px; align-items: flex-start; }
.reservation-closed p { font-size: 0.85rem; color: var(--muted); }

/* ── Carousel (galerie exemples — atelier) ────────────────────────────────── */
.carousel {
  display: flex;
  gap: 2px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  padding-bottom: 8px;
}
.carousel__item {
  flex: 0 0 min(320px, 78vw);
  scroll-snap-align: start;
  background: var(--surface);
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.carousel__item img { width: 100%; height: 100%; object-fit: cover; }
.carousel__item__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(12,12,14,0.7) 0%, transparent 55%);
}
.carousel__item__info { position: absolute; bottom: 20px; left: 20px; right: 20px; }
.carousel__item__name { font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--white-warm); margin-bottom: 4px; }
.carousel__item__desc { font-size: 0.72rem; color: var(--muted); }
.carousel__hint { font-size: 0.65rem; color: var(--dim); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 16px; }

/* ── Contact : toggle 2 formulaires ───────────────────────────────────────── */
.contact-toggle { display: flex; gap: 2px; margin-bottom: 40px; }
.contact-toggle input { position: absolute; opacity: 0; pointer-events: none; }
.contact-toggle label {
  flex: 1;
  text-align: center;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--surface);
  padding: 16px 12px;
  cursor: pointer;
  border: 1px solid var(--border);
  transition: color var(--t-med), border-color var(--t-med), background var(--t-med);
}
.contact-toggle input:checked + label { color: var(--gold); border-color: var(--gold-dim); background: var(--gold-glow); }
.contact-form-panel { display: none; }
#tab-info:checked ~ .contact-forms #panel-info,
#tab-sav:checked ~ .contact-forms #panel-sav { display: block; }

@media (max-width: 900px) {
  .modal { grid-template-columns: 1fr; }
  .modal__gallery-item { aspect-ratio: 16/10; }
}
@media (max-width: 600px) {
  .filters { gap: 8px; }
  .filter-btn { padding: 8px 14px; font-size: 0.62rem; }
  .modal-overlay { padding: 0; align-items: stretch; }
  .modal { margin-top: 0; min-height: 100%; }
}
