/* ================================================================
   ArtKeyz — Homepage Styles (Classic, no 3D)
   ================================================================ */

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

/* <picture> transparent pour le layout — l'<img> à l'intérieur agit comme enfant direct de son container.
   Indispensable pour que les règles CSS ciblant "parent > img" fonctionnent après le wrap WebP. */
picture { display: contents; }

:root {
  --gold:       #c9a96e;
  --gold-light: #e8d5a3;
  --gold-dark:  #8a6d3b;
  --black:      #080808;
  --dark:       #0f0f0f;
  --carbon:     #1a1a1a;
  --white:      #f5f0e8;
  --border:     rgba(201,169,110,0.18);
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  overflow-x: hidden;
}

/* Screen-reader only (SEO H1) */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
}

/* Museum wall — 3 frames as background */
.museum-wall {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  padding: 0 5%;
  opacity: 0;
  animation: museumFadeIn 2.5s ease 0.5s forwards;
}

.museum-frame {
  position: relative;
  flex-shrink: 0;
}

/* Spotlight effect above each frame */
.museum-frame::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 80px;
  background: radial-gradient(ellipse at 50% 100%, rgba(255,245,220,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.museum-frame-inner {
  position: relative;
  border: 4px solid rgba(201,169,110,0.18);
  box-shadow:
    0 6px 30px rgba(0,0,0,0.6),
    0 0 60px rgba(0,0,0,0.3),
    inset 0 0 0 1px rgba(201,169,110,0.08),
    inset 0 0 0 8px rgba(10,10,10,0.9);
  overflow: hidden;
  background: #080808;
}

/* Frame 1 (Lamborghini) — landscape */
.museum-frame:nth-child(1) .museum-frame-inner {
  width: 280px;
  padding: 14px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 6px 30px rgba(0,0,0,0.6),
    0 0 60px rgba(0,0,0,0.3),
    inset 0 0 0 1px rgba(201,169,110,0.08);
}
.museum-frame:nth-child(1) .museum-frame-inner img {
  width: 82%;
  height: auto;
}

/* Frame 2 (Porsche) — portrait, centre */
.museum-frame:nth-child(2) .museum-frame-inner {
  width: 220px;
  aspect-ratio: 3/4;
}

/* Frame 3 (Ferrari) — landscape */
.museum-frame:nth-child(3) .museum-frame-inner {
  width: 280px;
  padding: 14px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.museum-frame:nth-child(3) .museum-frame-inner img {
  width: 82%;
  height: auto;
}

/* Inner golden mat border */
.museum-frame-inner::after {
  content: '';
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(201,169,110,0.1);
  pointer-events: none;
  z-index: 2;
}

/* Spotlight glow on the frame */
.museum-frame-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(255,245,220,0.08) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}

.museum-frame-inner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.55;
  filter: saturate(0.5) brightness(0.75);
}

@keyframes museumFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(8,8,8,0.15) 0%, rgba(8,8,8,0.55) 55%, rgba(8,8,8,0.9) 100%),
    radial-gradient(ellipse at 50% 40%, rgba(201,169,110,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  min-height: 100vh;
  padding: 140px 24px 120px;
  width: 100%;
  animation: heroFadeIn 1.2s ease forwards;
}

.hero-top,
.hero-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-bottom {
  gap: 10px;
  margin-bottom: 60px;
}
.hero-bottom .hero-tagline {
  margin: 0;
}
.hero-bottom .hero-separator {
  margin: 0;
}
.hero-bottom .hero-cta {
  margin-top: 22px;
}

.hero-logo {
  width: 280px;
  height: auto;
  filter: drop-shadow(0 0 30px rgba(201,169,110,0.2));
  margin-bottom: 4px;
}

.hero-separator {
  width: 50px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,169,110,0.6), transparent);
  margin: 8px 0;
}

.hero-tagline {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: clamp(10px, 1.2vw, 13px);
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.8);
  margin: 8px 0 24px;
}

.hero-cta {
  display: inline-block;
  padding: 16px 48px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.4s ease;
}

.hero-cta:hover {
  background: var(--gold);
  color: var(--black);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.hero-scroll-hint span {
  font-size: 9px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(201,169,110,0.5);
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.8); }
  50% { opacity: 1; transform: scaleY(1); }
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── SECTIONS SHARED ── */
.section-header {
  text-align: center;
  margin-bottom: 56px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.section-header.revealed {
  opacity: 1;
  transform: translateY(0);
}

.section-label {
  font-size: 10px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 5vw, 52px);
  letter-spacing: 0.12em;
  color: var(--white);
  font-weight: 400;
}

.section-subtitle {
  font-size: 13px;
  font-weight: 300;
  color: rgba(245,240,232,0.5);
  margin-top: 12px;
  letter-spacing: 0.04em;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* ── PRODUCT GRID ── */
.home-collection,
.home-brands {
  padding: 100px 48px 80px;
}
.home-brands-bands {
  padding: 40px 48px 40px;
}
.home-brands-bands .section-header {
  margin-bottom: 32px;
}

/* ─── Bandes éditoriales marque par marque ─── */
.brand-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "image text";
  max-width: 1100px;
  margin: 0 auto 50px;
  align-items: stretch;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 3px;
  transition: border-color .4s, box-shadow .4s;
}
.brand-band.reverse {
  grid-template-areas: "text image";
}
.brand-band:last-of-type {
  margin-bottom: 0;
}
.brand-band-image {
  grid-area: image;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: #0a0a0a;
}
.brand-band-image img {
  width: 100%; height: 100%;
  object-fit: contain;
  transform: scale(1.35);
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
  filter: saturate(0.95) brightness(0.95);
}
.brand-band:hover .brand-band-image img {
  transform: scale(1.4);
  filter: saturate(1.05) brightness(1);
}
@media (max-width: 900px) {
  .brand-band-image img {
    object-fit: cover;
    transform: none;
  }
  .brand-band:hover .brand-band-image img {
    transform: scale(1.03);
  }
}
.brand-band-text {
  grid-area: text;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 40px;
  gap: 12px;
  position: relative;
}
.brand-band-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 12px;
  letter-spacing: 0.4em;
  color: var(--gold);
  padding-bottom: 6px;
  position: relative;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.brand-band-num em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--gold);
  opacity: 0.8;
  text-transform: none;
}
.brand-band-num::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 32px; height: 1px;
  background: var(--gold);
}
.brand-band-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(34px, 3.5vw, 48px);
  letter-spacing: 0.08em;
  line-height: 0.95;
  color: #fff;
}
.brand-band-desc {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(245,240,232,0.55);
  max-width: 420px;
  font-weight: 300;
}
.brand-band-cta {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 12px;
  transition: letter-spacing .4s, color .3s;
}
.brand-band:hover .brand-band-cta {
  letter-spacing: 0.35em;
  color: #e8d5a3;
}
.brand-band:hover {
  border-color: rgba(201,169,110,0.35);
  box-shadow: 0 10px 60px rgba(201,169,110,0.06);
}

/* Bande édition limitée — accent doré subtil */
.brand-band-limited {
  border-color: rgba(201,169,110,0.3);
  background: linear-gradient(135deg, rgba(201,169,110,0.04) 0%, transparent 50%);
}
.brand-band-limited .brand-band-name {
  background: linear-gradient(135deg, #e8d5a3 0%, #c9a96e 60%, #a58750 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

@media (max-width: 900px) {
  /* Mobile : photo en arrière-plan, texte en surimpression */
  .brand-band,
  .brand-band.reverse {
    display: block;
    position: relative;
    aspect-ratio: 4/5;
    grid-template-columns: none;
    grid-template-areas: none;
  }
  .brand-band-image {
    position: absolute;
    inset: 0;
    aspect-ratio: auto;
    z-index: 1;
  }
  .brand-band-image img {
    object-fit: cover;
    filter: saturate(0.8) brightness(0.55);
    transform: none;
  }
  .brand-band:hover .brand-band-image img {
    transform: scale(1.04);
    filter: saturate(1) brightness(0.7);
  }
  .brand-band-text {
    position: absolute;
    inset: 0;
    z-index: 2;
    padding: 28px;
    justify-content: flex-end;
    background: linear-gradient(180deg,
      rgba(8,8,8,0.2) 0%,
      rgba(8,8,8,0.4) 45%,
      rgba(8,8,8,0.85) 100%);
  }
  .brand-band-desc {
    font-size: 13px;
    color: rgba(245,240,232,0.75);
  }
  .brand-band { margin-bottom: 40px; }
  .home-brands-bands { padding: 20px 20px 30px; }
  .home-brands-bands .section-header { margin-bottom: 20px; }
}

/* ─── Tuiles marques (remplacent la grille produits sur l'accueil) ─── */
.brand-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.brand-tile {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 4px;
  text-decoration: none;
  color: inherit;
  display: block;
  background: #0a0a0a;
  transition: transform .4s ease, border-color .4s, box-shadow .4s;
}
.brand-tile img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.85) brightness(0.7);
  transition: filter .6s, transform .8s cubic-bezier(0.22, 1, 0.36, 1);
}
.brand-tile:hover img {
  filter: saturate(1) brightness(0.85);
  transform: scale(1.06);
}
.brand-tile-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 20%, rgba(0,0,0,0.55) 70%, rgba(0,0,0,0.85) 100%);
  pointer-events: none;
}
.brand-tile-content {
  position: absolute;
  left: 28px; right: 28px; bottom: 28px;
  z-index: 2;
  transition: transform .4s ease;
}
.brand-tile:hover .brand-tile-content {
  transform: translateY(-4px);
}
.brand-tile-label {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  position: relative;
  padding-bottom: 4px;
}
.brand-tile-label::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 24px; height: 1px;
  background: var(--gold);
  transition: width .4s ease;
}
.brand-tile:hover .brand-tile-label::after {
  width: 48px;
}
.brand-tile-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  letter-spacing: 0.12em;
  color: #fff;
  margin-bottom: 6px;
  line-height: 1;
}
.brand-tile-count {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.55);
}
.brand-tile:hover {
  border-color: rgba(201,169,110,0.45);
  box-shadow: 0 12px 48px rgba(201,169,110,0.08);
}

@media (max-width: 900px) {
  .brand-tiles { gap: 14px; }
  .brand-tile { aspect-ratio: 4 / 5; }
  .brand-tile-content { left: 20px; right: 20px; bottom: 22px; }
  .brand-tile-name { font-size: 30px; letter-spacing: 0.1em; }
  .brand-tile-label { font-size: 9px; margin-bottom: 8px; }
  .brand-tile-count { font-size: 9px; }
}
@media (max-width: 640px) {
  .brand-tiles { grid-template-columns: 1fr; gap: 14px; }
  .brand-tile { aspect-ratio: 16 / 9; }
  .home-brands { padding: 60px 16px 50px; }
}

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

.product-card {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.4s, transform 0.4s, box-shadow 0.4s;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease, border-color 0.4s, box-shadow 0.4s;
}

.product-card.revealed {
  opacity: 1;
  transform: translateY(0);
}

.product-card:nth-child(2) { transition-delay: 0.08s; }
.product-card:nth-child(3) { transition-delay: 0.16s; }
.product-card:nth-child(4) { transition-delay: 0.24s; }
.product-card:nth-child(5) { transition-delay: 0.32s; }
.product-card:nth-child(6) { transition-delay: 0.40s; }
.product-card:nth-child(7) { transition-delay: 0.48s; }
.product-card:nth-child(8) { transition-delay: 0.56s; }

.product-card:hover {
  border-color: rgba(201,169,110,0.45);
  box-shadow: 0 8px 40px rgba(201,169,110,0.08);
  transform: translateY(-4px);
}

.product-card-img-wrap {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: #111;
  position: relative;
}

.product-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

@media (hover: hover) {
  .product-card:hover .product-card-img {
    transform: scale(1.05);
  }
}

/* Slider horizontal à l'intérieur des cartes (accueil) */
.card-slider {
  display: flex;
  width: 100%;
  height: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
}
.card-slider::-webkit-scrollbar { display: none; }
.card-slide {
  flex: 0 0 100%;
  scroll-snap-align: center;
  scroll-snap-stop: always;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Badge édition limitée — doré & arrondi, sur les cartes */
.limited-badge-card {
  position: absolute;
  top: 10px; left: 10px;
  z-index: 4;
  background: linear-gradient(135deg, #e8c97a 0%, #c9a96e 60%, #a58750 100%);
  color: #0a0a0a;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.25);
  box-shadow: 0 2px 8px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.25);
  pointer-events: none;
  white-space: nowrap;
}
.limited-badge-card strong {
  font-size: 10px;
  letter-spacing: 0.1em;
  margin-left: 3px;
}

/* Dots indicateurs sous chaque carte accueil */
.card-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
  padding: 4px 8px;
  background: rgba(8,8,8,0.7);
  border-radius: 20px;
  z-index: 2;
  pointer-events: none;
}
.card-dots .card-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(232,213,163,0.35);
}
.card-dots .card-dot.active {
  background: var(--gold);
  transform: scale(1.4);
}

/* Pastilles noir/blanc — bandeau discret sous l'image */
.product-card-swatches {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 10px 0 4px;
  background: transparent;
}
.swatch {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(232,213,163,0.35);
  cursor: pointer;
  padding: 0;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  outline: none;
}
.swatch-noir  { background: #0a0a0a; }
.swatch-blanc { background: #f5f1e8; }
.swatch:hover { border-color: rgba(232,213,163,0.7); }
.swatch.active {
  border-color: var(--gold);
  transform: scale(1.15);
  box-shadow: 0 0 0 2px rgba(201,169,110,0.15);
}
/* Sur mobile (pas de hover), toujours visible */

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

.product-card-series {
  font-size: 9px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
}

.product-card-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 20px;
  color: var(--white);
  margin-top: 6px;
  letter-spacing: 0.02em;
}

.product-card-desc {
  font-size: 11px;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(245,240,232,0.45);
  margin-top: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.product-card-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  color: var(--gold);
  letter-spacing: 0.05em;
}

.product-card-cta {
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.5);
  transition: color 0.3s;
}

.product-card:hover .product-card-cta {
  color: var(--gold);
}

/* Section CTA */
.section-cta-wrap {
  text-align: center;
  margin-top: 56px;
}

.section-cta {
  display: inline-block;
  padding: 14px 40px;
  border: 1px solid rgba(201,169,110,0.4);
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  transition: all 0.3s;
}

.section-cta:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

/* ── SAVOIR-FAIRE ── */
.home-savoir-faire {
  padding: 80px 48px 100px;
  background: linear-gradient(to bottom, var(--black), #0a0a09);
  border-top: 1px solid var(--border);
}

.savoir-faire-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.savoir-faire-inner .section-title {
  margin-bottom: 48px;
}

.savoir-faire-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  text-align: left;
  align-items: start;
}

.savoir-faire-text {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.savoir-faire-text.revealed {
  opacity: 1;
  transform: translateY(0);
}

.savoir-faire-text p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(245,240,232,0.65);
  margin-bottom: 20px;
  text-align: justify;
  hyphens: auto;
}

.savoir-faire-link {
  display: inline-block;
  margin-top: 8px;
  font-size: 12px;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-decoration: none;
  transition: color 0.3s;
  font-weight: 400;
}
.savoir-faire-link:hover {
  color: var(--gold-light);
}

.savoir-faire-features {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.feature-item.revealed {
  opacity: 1;
  transform: translateY(0);
}
.feature-item:nth-child(2) { transition-delay: 0.1s; }
.feature-item:nth-child(3) { transition-delay: 0.2s; }
.feature-item:nth-child(4) { transition-delay: 0.3s; }

.feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.feature-item h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  letter-spacing: 0.15em;
  color: var(--white);
  font-weight: 400;
  margin-bottom: 4px;
}

.feature-item p {
  font-size: 12px;
  font-weight: 300;
  color: rgba(245,240,232,0.5);
  line-height: 1.5;
}

/* ================================================================
   RESPONSIVE — TABLET (769px – 1024px)
   ================================================================ */
@media (min-width: 769px) and (max-width: 1024px) {
  .museum-wall { padding: 0 3%; }
  .museum-frame:nth-child(1) .museum-frame-inner { width: 210px; padding: 11px 8px; }
  .museum-frame:nth-child(2) .museum-frame-inner { width: 160px; }
  .museum-frame:nth-child(3) .museum-frame-inner { width: 210px; padding: 11px 8px; }
  .home-collection { padding: 80px 32px 60px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .home-savoir-faire { padding: 60px 32px 80px; }
  .savoir-faire-grid { gap: 40px; }
}

/* ================================================================
   RESPONSIVE — MOBILE (≤ 768px)
   ================================================================ */
@media (max-width: 768px) {
  .museum-wall { padding: 0 2%; }
  .museum-frame:nth-child(1) .museum-frame-inner { width: 125px; padding: 7px 5px; border-width: 2px; }
  .museum-frame:nth-child(2) .museum-frame-inner { width: 90px; border-width: 2px; }
  .museum-frame:nth-child(3) .museum-frame-inner { width: 125px; padding: 7px 5px; border-width: 2px; }
  .museum-frame-inner { box-shadow: 0 4px 16px rgba(0,0,0,0.5), inset 0 0 0 1px rgba(201,169,110,0.06), inset 0 0 0 4px rgba(10,10,10,0.9); }
  .hero-logo { width: 200px; }
  .hero-tagline {
    font-size: 9px;
    letter-spacing: 0.25em;
    padding: 0 16px;
  }
  .hero-cta {
    padding: 14px 36px;
    font-size: 12px;
    letter-spacing: 0.25em;
  }

  .home-collection { padding: 60px 16px 50px; }
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .product-card-info { padding: 14px; }
  .product-card-name { font-size: 16px; }
  .product-card-desc { display: none; }
  .product-card-price { font-size: 18px; }
  .product-card-cta { font-size: 8px; }
  .section-title { font-size: 28px; }
  .section-subtitle { font-size: 12px; }

  .home-savoir-faire { padding: 50px 16px 60px; }
  .savoir-faire-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .savoir-faire-text p { font-size: 13px; }
}

@media (max-width: 420px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}
