/* =============================================
   STILETTA PARIS — Feuille de styles principale
   ============================================= */

/* =============================================
   PRELOADER
   ============================================= */

.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--noir, #1A1A1A);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-logo {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 20px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: #F7F6F4;
  opacity: 0;
  transform: translateY(12px);
  animation: preloader-fade-in 0.8s ease 0.2s forwards;
}

.preloader-line {
  width: 0;
  height: 1px;
  background: #C9A96E;
  animation: preloader-line 1.2s ease 0.6s forwards;
}

@keyframes preloader-fade-in {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes preloader-line {
  to { width: 120px; }
}

/* =============================================
   TRANSITION ENTRE PAGES
   ============================================= */

.page-transition {
  position: fixed;
  inset: 0;
  z-index: 8000;
  background: var(--noir, #1A1A1A);
  transform: translateY(100%);
  pointer-events: none;
}

.page-transition.enter {
  animation: transition-enter 0.5s cubic-bezier(0.76, 0, 0.24, 1) forwards;
}

.page-transition.leave {
  animation: transition-leave 0.5s cubic-bezier(0.76, 0, 0.24, 1) forwards;
}

@keyframes transition-enter {
  0%   { transform: translateY(100%); }
  100% { transform: translateY(0%); }
}

@keyframes transition-leave {
  0%   { transform: translateY(0%); }
  100% { transform: translateY(-100%); }
}

/* Curseur standard (personnalisé supprimé) */
.cursor { display: none; }

/* =============================================
   SEARCH OVERLAY
   ============================================= */

.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 7000;
  background: rgba(255, 255, 255, 0.97);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 160px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.search-overlay.open {
  opacity: 1;
  visibility: visible;
}

.search-close-btn {
  position: absolute;
  top: 36px;
  right: 48px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--taupe);
  transition: color 0.2s ease;
}

.search-close-btn:hover { color: var(--noir); }

.search-inner {
  width: 100%;
  max-width: 680px;
  padding: 0 24px;
}

.search-input {
  width: 100%;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(28px, 4vw, 44px);
  border: none;
  border-bottom: 1px solid rgba(26,26,26,0.15);
  outline: none;
  padding-bottom: 16px;
  color: var(--noir);
  background: none;
}

.search-input::placeholder { color: rgba(26,26,26,0.22); }

.search-results {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
}

.search-result-item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(26,26,26,0.06);
  text-decoration: none;
  color: var(--noir);
  transition: opacity 0.2s ease;
}

.search-result-item:hover { opacity: 0.5; }
.search-result-item.hidden { display: none; }

.search-result-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--or);
  min-width: 90px;
  flex-shrink: 0;
}

.search-result-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 20px;
}

/* =============================================
   ACCOUNT DROPDOWN
   ============================================= */

.account-dropdown {
  position: fixed;
  top: 80px;
  right: 48px;
  width: 240px;
  background: #fff;
  border: 1px solid rgba(26,26,26,0.1);
  padding: 28px;
  box-shadow: 0 12px 48px rgba(0,0,0,0.07);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
  z-index: 6000;
}

.account-dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.account-dropdown-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--noir);
  margin-bottom: 14px;
}

.account-dropdown-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: var(--taupe);
  line-height: 1.8;
  margin-bottom: 22px;
}

.account-dropdown-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--noir);
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: opacity 0.2s ease;
}

.account-dropdown-link:hover { opacity: 0.5; }

/* --- Waitlist form --- */
.account-dropdown { width: 280px; }

.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}

.waitlist-input {
  width: 100%;
  border: none;
  border-bottom: 1px solid rgba(26,26,26,0.2);
  padding: 8px 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 300;
  color: var(--noir);
  background: transparent;
  outline: none;
  transition: border-color 0.2s ease;
}

.waitlist-input::placeholder { color: rgba(26,26,26,0.4); }
.waitlist-input:focus { border-color: var(--or); }

.waitlist-submit {
  align-self: flex-start;
  margin-top: 6px;
  padding: 10px 24px;
  background: var(--noir);
  color: #fff;
  border: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, opacity 0.2s ease;
}

.waitlist-submit:hover { background: var(--or); }

.waitlist-confirm {
  display: none;
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  font-style: italic;
  color: var(--or);
  line-height: 1.7;
  margin-top: 8px;
}

/* =============================================
   WISHLIST PANEL
   ============================================= */

.wishlist-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26,26,26,0.35);
  z-index: 3000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.wishlist-overlay.open { opacity: 1; visibility: visible; }

.wishlist-panel {
  position: fixed;
  top: 0; right: 0;
  width: 420px;
  height: 100vh;
  background: var(--ivoire);
  z-index: 3100;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.76, 0, 0.24, 1);
  display: flex;
  flex-direction: column;
}

.wishlist-panel.open { transform: translateX(0); }

.wishlist-header-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 32px;
  border-bottom: 1px solid rgba(26,26,26,0.08);
}

.wishlist-title-panel {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 20px;
  letter-spacing: 0.05em;
}

.wishlist-close {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--taupe);
  transition: color 0.2s ease;
}

.wishlist-body {
  flex: 1;
  overflow-y: auto;
  padding: 28px 32px;
}

.wishlist-empty {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: var(--taupe);
  letter-spacing: 0.05em;
  text-align: center;
  margin-top: 56px;
  line-height: 1.8;
}

.wishlist-item {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(26,26,26,0.07);
}

.wishlist-item-image {
  width: 80px; height: 80px;
  object-fit: cover;
  flex-shrink: 0;
}

.wishlist-item-info { flex: 1; }

.wishlist-item-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  margin-bottom: 4px;
}

.wishlist-item-price {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: var(--taupe);
  margin-bottom: 16px;
}

.wishlist-item-actions { display: flex; gap: 16px; align-items: center; }

.btn-wishlist-to-cart {
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: none;
  border: none;
  border-bottom: 1px solid var(--noir);
  cursor: pointer;
  color: var(--noir);
  padding-bottom: 2px;
  transition: opacity 0.2s ease;
}

.btn-wishlist-remove {
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--taupe);
  transition: opacity 0.2s ease;
}

.btn-wishlist-to-cart:hover,
.btn-wishlist-remove:hover { opacity: 0.5; }

/* Badge wishlist icon */
.wishlist-count {
  display: none;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 2px; right: 2px;
  width: 14px; height: 14px;
  background: var(--noir);
  color: #fff;
  border-radius: 50%;
  font-family: 'Montserrat', sans-serif;
  font-size: 8px;
  letter-spacing: 0;
  line-height: 1;
  pointer-events: none;
}

@media (max-width: 768px) {
  .wishlist-panel { width: 100%; }
  .account-dropdown { right: 16px; }
  .search-close-btn { right: 24px; }
}

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

:root {
  --noir: #1A1A1A;
  --ivoire: #FFFFFF;
  --or: #C9A96E;
  --taupe: #5C5148;
  --section-pad: 110px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background-color: var(--ivoire);
  color: var(--noir);
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 13px;
  line-height: 1.9;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

/* =============================================
   HEADER
   ============================================= */

.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 28px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s ease, padding 0.3s ease;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  padding: 18px 56px;
  border-bottom: 1px solid rgba(26, 26, 26, 0.07);
}

/* Header dark variant — utilisé sur hero sombre */
.header[data-hero="dark"]:not(.scrolled) .header-logo,
.header[data-hero="dark"]:not(.scrolled) .header-nav a,
.header[data-hero="dark"]:not(.scrolled) .cart-icon,
.header[data-hero="dark"]:not(.scrolled) .icon-btn { color: var(--ivoire); }
.header[data-hero="dark"]:not(.scrolled) .hamburger span { background: var(--ivoire); }

.header-logo {
  position: absolute;
  left: 50%; transform: translateX(-50%);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 17px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--noir);
  white-space: nowrap;
  transition: color 0.3s ease;
}

.header-nav {
  display: flex;
  gap: 36px;
  list-style: none;
}

.header-nav a {
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--noir);
  transition: color 0.2s ease;
  position: relative;
}

.header-nav a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--or);
  transition: width 0.3s ease;
}

.header-nav a:hover::after { width: 100%; }

.header-right { display: flex; align-items: center; gap: 20px; }

/* ---- Icônes header ---- */
.header-icons {
  display: flex;
  align-items: center;
  gap: 4px;
}

.icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 36px; height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--noir);
  transition: color 0.2s ease, opacity 0.2s ease;
  padding: 0;
}

.icon-btn:hover { opacity: 0.55; }

.icon-btn svg { display: block; }

.cart-icon {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: color 0.2s ease;
  background: none;
  border: none;
  color: var(--noir);
}

.cart-count {
  display: none;
  align-items: center;
  justify-content: center;
  width: 16px; height: 16px;
  background: var(--noir);
  color: var(--ivoire);
  border-radius: 50%;
  font-size: 9px;
  letter-spacing: 0;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 22px; height: 1px;
  background: var(--noir);
  transition: all 0.3s ease;
}

/* =============================================
   NAVIGATION MOBILE
   ============================================= */

.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--ivoire);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mobile-nav.open { transform: translateX(0); }

.mobile-nav a {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 34px;
  letter-spacing: 0.1em;
  color: var(--noir);
  font-style: italic;
  transition: color 0.2s ease;
}

.mobile-nav a:hover { color: var(--or); }

.mobile-nav-close {
  position: absolute;
  top: 28px; right: 24px;
  background: none; border: none;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  cursor: pointer;
  color: var(--taupe);
}

/* =============================================
   HERO
   ============================================= */

.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
  background-color: var(--noir);
  display: flex;
  align-items: flex-end;
  padding: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.65;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,26,0.72) 0%, rgba(26,26,26,0.05) 55%);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--ivoire);
  max-width: 580px;
}

.hero-eyebrow {
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 24px;
  display: block;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(44px, 5.5vw, 72px);
  line-height: 1.08;
  margin-bottom: 44px;
  font-style: italic;
}

.cta-link {
  display: inline-block;
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ivoire);
  text-decoration: underline;
  text-underline-offset: 7px;
  text-decoration-thickness: 1px;
  transition: color 0.2s ease;
}

.cta-link:hover { color: var(--or); }

/* =============================================
   SECTIONS — BASES
   ============================================= */

.section { padding: var(--section-pad) 80px; }
.section-sm { padding: 80px; }

.section-label {
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 20px;
  display: block;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.12;
  margin-bottom: 48px;
}

.section-text {
  font-weight: 300;
  font-size: 13px;
  line-height: 1.9;
  color: var(--taupe);
  max-width: 680px;
}

/* =============================================
   PARALLAX HERO
   ============================================= */

.hero { overflow: hidden; }

.hero-bg {
  will-change: transform;
  transform-origin: center top;
}

/* =============================================
   CITATION CENTRALE
   ============================================= */

.citation-section {
  padding: 120px 80px;
  background: var(--ivoire);
  text-align: center;
  overflow: hidden;
}

.citation-inner {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
}

.citation-ligne {
  display: block;
  width: 1px;
  height: 60px;
  background: var(--or);
  margin: 0 auto 48px;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.8s ease;
}

.citation-inner.visible .citation-ligne {
  transform: scaleY(1);
}

.citation-texte {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(28px, 4vw, 52px);
  font-style: italic;
  line-height: 1.25;
  color: var(--noir);
  letter-spacing: 0.02em;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease 0.3s, transform 1s ease 0.3s;
}

.citation-inner.visible .citation-texte {
  opacity: 1;
  transform: translateY(0);
}

.citation-auteur {
  display: block;
  margin-top: 40px;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--or);
  opacity: 0;
  transition: opacity 0.8s ease 0.7s;
}

.citation-inner.visible .citation-auteur {
  opacity: 1;
}

/* =============================================
   COMPTEUR ÉDITION LIMITÉE
   ============================================= */

.edition-counter {
  margin-top: 24px;
  max-width: 460px;
}

.counter-track {
  height: 1px;
  background: rgba(247, 246, 244, 0.15);
  margin-bottom: 14px;
  position: relative;
  overflow: hidden;
}

.counter-bar {
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  background: var(--or);
  width: 0;
}

.counter-text {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(247, 246, 244, 0.55);
}

.counter-number {
  color: var(--or);
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.05em;
  vertical-align: baseline;
}

@media (max-width: 768px) {
  .citation-section { padding: 80px 24px; }
}

/* =============================================
   GALERIE ARCHES — Section "Première création"
   ============================================= */

.gallery-section {
  padding: var(--section-pad) 80px;
  background: var(--ivoire);
}

.gallery-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 72px;
}

.arch-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: end;
}

.arch-item {
  overflow: hidden;
  border-radius: 999px 999px 0 0;
  aspect-ratio: 3/4;
  background: #d8d3cc;
}

.arch-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.arch-item:hover img { transform: scale(1.05); }

.arch-item:nth-child(2),
.arch-item:nth-child(4) { margin-top: -48px; }

/* =============================================
   L'ART DU DÉTAIL — section sombre split
   ============================================= */

.detail-section {
  background: var(--noir);
  padding: 0;
}

.detail-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
}

.detail-image {
  overflow: hidden;
  min-height: 600px;
}

.detail-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.detail-image:hover img { transform: scale(1.04); }

.detail-content {
  padding: 100px 88px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--ivoire);
}

.detail-content .section-label { color: var(--or); }
.detail-content .section-title { color: var(--ivoire); margin-bottom: 0; }

.manifeste {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 48px;
}

.manifeste p {
  font-size: 13px;
  line-height: 1.95;
  color: rgba(247, 246, 244, 0.68);
}

/* =============================================
   RÉVÉLER L'ALLURE — 2 arches centrées
   ============================================= */

.allure-section {
  padding: var(--section-pad) 80px;
  background: var(--ivoire);
}

.allure-header {
  text-align: center;
  margin-bottom: 72px;
}

.allure-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  max-width: 860px;
  margin: 0 auto;
}

.allure-arch {
  overflow: hidden;
  border-radius: 999px 999px 0 0;
  aspect-ratio: 2/3;
  background: #ccc9c2;
}

.allure-arch img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.allure-arch:hover img { transform: scale(1.05); }

/* =============================================
   FOOTER
   ============================================= */

.footer {
  background: var(--noir);
  color: var(--ivoire);
  padding: 88px 80px 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(247, 246, 244, 0.09);
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 20px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ivoire);
  margin-bottom: 14px;
  display: block;
}

.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px;
  color: rgba(247, 246, 244, 0.45);
  font-weight: 300;
  margin-bottom: 40px;
}

.footer-newsletter p {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: rgba(247, 246, 244, 0.55);
}

.newsletter-form {
  display: flex;
  border-bottom: 1px solid rgba(247, 246, 244, 0.22);
}

.newsletter-input {
  background: transparent; border: none; outline: none;
  color: var(--ivoire);
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 12px;
  padding: 10px 0;
  flex: 1;
  letter-spacing: 0.08em;
}

.newsletter-input::placeholder { color: rgba(247, 246, 244, 0.28); }

.newsletter-btn {
  background: transparent; border: none;
  cursor: pointer;
  color: var(--or);
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 10px 0 10px 16px;
  transition: color 0.2s ease;
}

.newsletter-btn:hover { color: var(--ivoire); }

.footer-col-title {
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 24px;
  display: block;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 13px; }

.footer-links a {
  font-size: 12px;
  color: rgba(247, 246, 244, 0.58);
  letter-spacing: 0.04em;
  transition: color 0.2s ease;
}

.footer-links a:hover { color: var(--ivoire); }

.footer-bottom {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copy {
  font-size: 10px;
  color: rgba(247, 246, 244, 0.28);
  letter-spacing: 0.12em;
}

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

.footer-socials a {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(247, 246, 244, 0.38);
  transition: color 0.2s ease;
}

.footer-socials a:hover { color: var(--or); }

/* =============================================
   PANIER LATÉRAL
   ============================================= */

.cart-overlay {
  position: fixed; inset: 0;
  background: rgba(26, 26, 26, 0.48);
  z-index: 2000;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}

.cart-overlay.open { opacity: 1; pointer-events: all; }

.cart-panel {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 420px;
  background: var(--ivoire);
  z-index: 2001;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
}

.cart-panel.open { transform: translateX(0); }

.cart-header-panel {
  padding: 32px 40px;
  border-bottom: 1px solid rgba(26, 26, 26, 0.07);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-title-panel {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 22px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.cart-close {
  cursor: pointer;
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  font-weight: 300;
  color: var(--taupe);
  transition: color 0.2s ease;
  background: none; border: none;
}

.cart-close:hover { color: var(--noir); }

.cart-body { flex: 1; overflow-y: auto; padding: 40px; }

.cart-item { display: flex; gap: 24px; margin-bottom: 40px; }

.cart-item-image {
  width: 96px; height: 116px;
  object-fit: cover;
  background: #ddd8d0;
  flex-shrink: 0;
}

.cart-item-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300; font-size: 19px;
  letter-spacing: 0.04em; margin-bottom: 4px;
}

.cart-item-edition {
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--taupe); margin-bottom: 18px;
}

.cart-item-price { font-size: 14px; margin-bottom: 16px; }

.qty-control {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  border: 1px solid rgba(26, 26, 26, 0.14);
  padding: 8px 18px;
}

.qty-btn {
  background: none; border: none; cursor: pointer;
  font-size: 18px; color: var(--noir); line-height: 1;
  padding: 0 2px;
  transition: color 0.2s ease;
}

.qty-btn:hover { color: var(--or); }

.qty-value {
  font-size: 12px; min-width: 20px; text-align: center;
}

.cart-empty {
  text-align: center; padding: 60px 0;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 20px;
  color: rgba(26, 26, 26, 0.35);
}

.cart-footer {
  padding: 32px 40px;
  border-top: 1px solid rgba(26, 26, 26, 0.07);
}

.cart-total {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 24px;
}

.cart-total-label {
  font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase;
}

.cart-total-price {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300; font-size: 26px;
}

.btn-checkout {
  display: block; width: 100%;
  padding: 18px 32px;
  background: var(--noir); color: var(--ivoire);
  border: 1px solid var(--noir);
  cursor: pointer; font-weight: 300;
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
  transition: background 0.25s, color 0.25s; text-align: center;
}

.btn-checkout:hover { background: transparent; color: var(--noir); }

/* =============================================
   PAGE BOUTIQUE — FICHE PRODUIT
   ============================================= */

.product-page { padding-top: 88px; }

.product-layout {
  display: grid;
  grid-template-columns: 55% 45%;
  min-height: calc(100vh - 88px);
}

.product-gallery {
  position: sticky;
  top: 88px;
  height: calc(100vh - 88px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.product-main-image {
  flex: 1;
  object-fit: cover;
  width: 100%;
  min-height: 0;
  transition: opacity 0.3s ease;
}

.product-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  padding: 12px;
  background: var(--ivoire);
}

.product-thumb {
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.product-thumb.active { border-color: var(--noir); }

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

.product-thumb:hover img { transform: scale(1.06); }

.product-info {
  padding: 80px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid rgba(26, 26, 26, 0.06);
}

.product-maison {
  font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--or); margin-bottom: 16px;
}

.product-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300; font-size: 44px;
  letter-spacing: 0.04em; margin-bottom: 6px; line-height: 1.1;
}

.product-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 18px;
  color: var(--taupe); margin-bottom: 28px; font-weight: 300;
}

.product-price {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300; font-size: 28px;
  letter-spacing: 0.04em;
}

.product-divider {
  width: 36px; height: 1px;
  background: var(--or);
  margin: 40px 0;
}

.product-description {
  font-size: 13px; line-height: 1.9;
  color: var(--taupe); max-width: 460px;
  margin-bottom: 40px;
}

.product-specs { margin-bottom: 36px; }

.product-spec {
  display: flex;
  border-bottom: 1px solid rgba(26, 26, 26, 0.07);
  padding: 13px 0; gap: 24px;
}

.spec-label {
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--taupe); min-width: 110px;
}

.spec-value { font-size: 12px; color: var(--noir); letter-spacing: 0.04em; }

.coloris-label {
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--taupe); margin-bottom: 14px; display: block;
}

.coloris-options { display: flex; gap: 14px; margin-bottom: 36px; }

.coloris-swatch {
  width: 32px; height: 32px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s ease;
  position: relative;
}

.coloris-swatch.active { border-color: var(--noir); outline: 2px solid transparent; box-shadow: 0 0 0 3px var(--ivoire), 0 0 0 5px var(--noir); }

.swatch-noir { background: #1a1a1a; }
.swatch-blush { background: #e8c4b8; }

.btn-add-cart {
  display: flex; align-items: center; justify-content: center;
  width: 100%; max-width: 460px;
  padding: 20px 40px;
  background: var(--noir); color: var(--ivoire);
  border: 1px solid var(--noir);
  cursor: pointer; font-weight: 300;
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
  transition: background 0.25s, color 0.25s;
  margin-bottom: 14px;
}

.btn-add-cart:hover { background: transparent; color: var(--noir); }

.edition-block {
  background: var(--noir);
  color: var(--ivoire);
  padding: 32px 36px;
  margin-top: 20px;
  max-width: 460px;
}

.edition-label {
  font-size: 10px; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--or); margin-bottom: 8px; display: block;
}

.edition-text {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300; font-size: 20px;
  font-style: italic; margin-bottom: 6px;
}

.edition-sub { font-size: 11px; color: rgba(247,246,244,0.48); letter-spacing: 0.1em; }

/* =============================================
   PAGES INTÉRIEURES — structure commune
   ============================================= */

.page-inner { padding-top: 130px; min-height: 100vh; }

.page-hero {
  padding: 56px 80px 80px;
  border-bottom: 1px solid rgba(26, 26, 26, 0.07);
  margin-bottom: 80px;
}

.page-label {
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--or); margin-bottom: 20px; display: block;
}

.page-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(42px, 7vw, 88px);
  line-height: 1.02; letter-spacing: 0.04em;
}

/* =============================================
   PAGE L'OBSESSION
   ============================================= */

.obsession-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  padding: 0 80px 110px;
  align-items: start;
}

.obsession-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.obsession-photo {
  aspect-ratio: 3/4;
  background: #2a2a2a;
  overflow: hidden;
  position: relative;
}

.obsession-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.05);
  transition: transform 0.7s ease;
}

.obsession-photo:hover img { transform: scale(1.04); }

.obsession-year {
  position: absolute; bottom: 14px; left: 14px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300; font-size: 12px;
  letter-spacing: 0.2em;
  color: rgba(247,246,244,0.5);
}

.obsession-text { position: sticky; top: 160px; padding-top: 16px; }

.obsession-fragment {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300; font-size: 23px;
  line-height: 1.65; color: var(--noir);
  margin-bottom: 28px; font-style: italic;
}

.obsession-signature {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300; font-size: 12px;
  color: var(--taupe); line-height: 1.9;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(26,26,26,0.1);
}

.obsession-signature .obsession-slogan {
  font-family: 'Cormorant Garamond', serif;
  font-style: normal;
  font-weight: 300;
  font-size: 32px;
  letter-spacing: 0.04em;
  line-height: 1.3;
  color: var(--noir);
  margin-top: 32px;
  display: block;
}

/* =============================================
   PAGE CONTACT
   ============================================= */

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  padding: 0 80px 110px;
}

.contact-block {
  margin-bottom: 52px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(26, 26, 26, 0.07);
}

.contact-block:last-child { border-bottom: none; }

.contact-block-label {
  font-size: 10px; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--or); margin-bottom: 14px; display: block;
}

.contact-block-text {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300; font-size: 21px;
  line-height: 1.55; color: var(--noir); margin-bottom: 8px;
}

.contact-block-sub {
  font-size: 12px; color: var(--taupe); letter-spacing: 0.04em;
}

.form-group { margin-bottom: 30px; }

.form-group label {
  display: block;
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--taupe); margin-bottom: 10px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: transparent; border: none;
  border-bottom: 1px solid rgba(26, 26, 26, 0.18);
  outline: none;
  padding: 12px 0;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300; font-size: 13px;
  color: var(--noir);
  transition: border-color 0.2s ease;
  border-radius: 0; -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--noir); }

.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%235C5148'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
  padding-right: 20px;
}

.form-group textarea { resize: none; height: 110px; }

.btn-submit {
  display: inline-flex; align-items: center;
  padding: 18px 52px;
  background: var(--noir); color: var(--ivoire);
  border: 1px solid var(--noir); cursor: pointer;
  font-weight: 300; font-size: 10px;
  letter-spacing: 0.3em; text-transform: uppercase;
  transition: background 0.25s, color 0.25s;
  margin-top: 8px;
}

.btn-submit:hover { background: transparent; color: var(--noir); }

/* =============================================
   PAGE PRESSE
   ============================================= */

.presse-layout { padding: 0 80px 110px; }

.presse-intro {
  max-width: 680px; margin-bottom: 80px;
}

.presse-intro p { font-size: 13px; color: var(--taupe); line-height: 1.9; }

.presse-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(26, 26, 26, 0.08);
  margin-bottom: 80px;
}

.presse-card {
  padding: 52px 44px;
  border-right: 1px solid rgba(26, 26, 26, 0.08);
}

.presse-card:last-child { border-right: none; }

.presse-card-label {
  font-size: 10px; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--or); margin-bottom: 20px; display: block;
}

.presse-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300; font-size: 26px;
  margin-bottom: 18px; line-height: 1.25;
}

.presse-card-text {
  font-size: 12px; color: var(--taupe); line-height: 1.85; margin-bottom: 32px;
}

.btn-presse {
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  text-decoration: underline; text-underline-offset: 5px;
  text-decoration-thickness: 1px; color: var(--noir);
  transition: color 0.2s ease;
}

.btn-presse:hover { color: var(--or); }

/* =============================================
   PAGES LÉGALES
   ============================================= */

.legal-content { padding: 0 80px 110px; max-width: 960px; }

.legal-section {
  margin-bottom: 60px; padding-bottom: 60px;
  border-bottom: 1px solid rgba(26, 26, 26, 0.06);
}

.legal-section:last-child { border-bottom: none; }

.legal-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300; font-size: 28px;
  letter-spacing: 0.04em; margin-bottom: 24px;
}

.legal-section h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300; font-size: 10px;
  letter-spacing: 0.22em; text-transform: uppercase;
  margin-bottom: 10px; color: var(--taupe); margin-top: 30px;
}

.legal-section p {
  font-size: 13px; color: var(--taupe);
  line-height: 1.9; margin-bottom: 14px; max-width: 680px;
}

.legal-section ul { list-style: none; margin-bottom: 14px; }

.legal-section ul li {
  font-size: 13px; color: var(--taupe);
  line-height: 1.9; padding-left: 22px; position: relative; margin-bottom: 6px;
}

.legal-section ul li::before {
  content: '—'; position: absolute; left: 0; color: var(--or);
}

/* =============================================
   LIVRAISON
   ============================================= */

.livraison-layout {
  padding: 0 80px 110px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.livraison-block {
  padding: 52px 48px;
  border: 1px solid rgba(26, 26, 26, 0.08);
}

.livraison-icon {
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--or); margin-bottom: 20px; display: block;
}

.livraison-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300; font-size: 28px;
  margin-bottom: 28px; line-height: 1.2;
}

.livraison-list { list-style: none; }

.livraison-list li {
  font-size: 13px; color: var(--taupe);
  line-height: 1.9; padding-left: 22px;
  position: relative; margin-bottom: 10px;
}

.livraison-list li::before {
  content: '—'; position: absolute; left: 0; color: var(--or);
}

/* =============================================
   COOKIE BANNER
   ============================================= */

.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--noir);
  color: var(--ivoire);
  padding: 24px 56px;
  z-index: 5000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  border-top: 1px solid rgba(247,246,244,0.08);
}

.cookie-banner.visible { transform: translateY(0); }

.cookie-text {
  font-size: 11px;
  color: rgba(247,246,244,0.62);
  letter-spacing: 0.04em; line-height: 1.6;
  max-width: 620px;
}

.cookie-text a { color: var(--or); text-decoration: underline; text-underline-offset: 3px; }

.cookie-actions { display: flex; gap: 12px; flex-shrink: 0; }

.cookie-btn {
  padding: 10px 24px;
  font-weight: 300; font-size: 10px;
  letter-spacing: 0.2em; text-transform: uppercase;
  cursor: pointer;
  border: 1px solid rgba(247,246,244,0.25);
  background: transparent; color: rgba(247,246,244,0.65);
  transition: opacity 0.2s ease;
}

.cookie-btn.accept {
  background: var(--or); color: var(--noir); border-color: var(--or);
}

.cookie-btn:hover { opacity: 0.75; }

/* =============================================
   PAGE L'ALLURE — manifeste visuel
   ============================================= */

.allure-page-layout {
  padding: 0 80px 120px;
  max-width: 1200px;
  margin: 0 auto;
}

.allure-page-arch-wrap {
  position: relative;
  max-width: 560px;
  margin: 0 auto 96px;
}

.allure-page-arch {
  overflow: hidden;
  border-radius: 999px 999px 0 0;
  aspect-ratio: 2/3;
  background: #1a1a1a;
}

.allure-page-arch img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.88;
  transition: transform 0.9s ease;
}

.allure-page-arch:hover img { transform: scale(1.04); }

.allure-page-arch-caption {
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(32px, 4vw, 52px);
  color: var(--noir);
  letter-spacing: 0.02em;
}

.allure-manifesto-block {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  padding-top: 56px;
}

.allure-manifesto-name {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 40px;
  display: block;
}

.allure-manifesto-lines {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.75;
  color: var(--noir);
  margin-bottom: 56px;
}

.allure-manifesto-lines em {
  font-style: italic;
  color: var(--taupe);
}

.allure-manifesto-slogan {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 18px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 40px;
  display: block;
}

.btn-decouvrir {
  display: inline-block;
  padding: 16px 44px;
  border: 1px solid var(--noir);
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--noir);
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
}

.btn-decouvrir:hover {
  background: var(--noir);
  color: var(--ivoire);
}

@media (max-width: 1024px) {
  .allure-page-layout { padding: 0 48px 80px; }
}

@media (max-width: 768px) {
  .allure-page-layout { padding: 0 24px 60px; }
  .allure-page-arch-wrap { max-width: 100%; }
  .allure-page-arch-caption { font-size: 28px; bottom: -24px; }
  .allure-manifesto-lines { font-size: 20px; }
}

/* =============================================
   ANIMATIONS AU SCROLL
   ============================================= */

.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s ease, transform 0.85s ease;
}

.fade-in.visible { opacity: 1; transform: translateY(0); }

.fade-in-d1 { transition-delay: 0.1s; }
.fade-in-d2 { transition-delay: 0.2s; }
.fade-in-d3 { transition-delay: 0.3s; }
.fade-in-d4 { transition-delay: 0.45s; }

/* =============================================
   RESPONSIVE TABLETTE (≤ 1024px)
   ============================================= */

@media (max-width: 1024px) {
  :root { --section-pad: 80px; }

  .header, .header.scrolled { padding-left: 36px; padding-right: 36px; }
  .header-nav { gap: 24px; }

  .section { padding: 80px 48px; }
  .gallery-section, .allure-section { padding: 80px 48px; }
  .detail-section .detail-content { padding: 72px 56px; }

  .arch-gallery { grid-template-columns: repeat(2, 1fr); }
  .arch-item:nth-child(2), .arch-item:nth-child(4) { margin-top: 0; }

  .detail-inner { grid-template-columns: 1fr; }
  .detail-image { height: 56vh; }

  .allure-grid { max-width: 640px; }

  .footer { padding: 72px 48px 36px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 48px; }

  .product-layout { grid-template-columns: 1fr; }
  .product-gallery { position: relative; top: 0; height: 65vh; }
  .product-info { padding: 52px 48px; }

  .obsession-layout { grid-template-columns: 1fr; padding: 0 48px 80px; gap: 56px; }
  .obsession-text { position: relative; top: 0; }

  .contact-layout { grid-template-columns: 1fr; padding: 0 48px 80px; gap: 60px; }

  .presse-grid { grid-template-columns: 1fr 1fr; }
  .presse-layout { padding: 0 48px 80px; }

  .legal-content, .livraison-layout { padding: 0 48px 80px; }

  .page-hero { padding: 40px 48px 64px; }
  .hero { padding: 60px; }
}

/* =============================================
   RESPONSIVE MOBILE (≤ 768px)
   ============================================= */

@media (max-width: 768px) {
  :root { --section-pad: 60px; }

  .header { padding: 20px 24px; }
  .header.scrolled { padding: 16px 24px; }
  .header-nav { display: none; }
  .hamburger { display: flex; }
  .header-logo { font-size: 13px; letter-spacing: 0.26em; }

  .hero { padding: 32px 24px 56px; }
  .hero-title { font-size: 38px; }

  .section { padding: 60px 24px; }
  .gallery-section, .allure-section { padding: 60px 24px; }

  .arch-gallery { gap: 10px; }
  .allure-grid { grid-template-columns: 1fr; max-width: 300px; }

  .detail-content { padding: 48px 24px; }
  .manifeste { grid-template-columns: 1fr; gap: 24px; }

  .footer { padding: 60px 24px 32px; }
  .footer-top { grid-template-columns: 1fr; gap: 44px; }

  .cart-panel { width: 100%; }

  .product-info { padding: 36px 24px; }
  .product-name { font-size: 34px; }
  .btn-add-cart, .edition-block { max-width: 100%; }

  .obsession-layout { padding: 0 24px 60px; gap: 40px; }
  .obsession-fragment { font-size: 19px; }

  .contact-layout { padding: 0 24px 60px; }

  .presse-grid { grid-template-columns: 1fr; }
  .presse-card { border-right: none; border-bottom: 1px solid rgba(26,26,26,0.08); }
  .presse-card:last-child { border-bottom: none; }
  .presse-layout { padding: 0 24px 60px; }

  .legal-content { padding: 0 24px 60px; }
  .livraison-layout { grid-template-columns: 1fr; padding: 0 24px 60px; }

  .page-hero { padding: 32px 24px 48px; }
  .page-title { font-size: 42px; }

  .cookie-banner { flex-direction: column; align-items: flex-start; padding: 24px; gap: 20px; }

  .obsession-photos { grid-template-columns: 1fr 1fr; }
}
