/* ============================================
   MHAMDI PARFUMS - DESIGN SYSTEM v2
   Palette: Crème ivoire + Bronze/Champagne + Noir profond
   ============================================ */

:root {
  /* Fond principal - ivoire chaud premium */
  --bg: #f8f4ed;
  --bg-soft: #f1ebe0;
  --bg-card: #ffffff;
  --bg-dark: #1a1814;

  /* Accents bronze/champagne */
  --gold: #b8935a;
  --gold-dark: #8a6d3f;
  --gold-light: #d4b07f;
  --gold-soft: rgba(184, 147, 90, 0.08);

  /* Textes */
  --ink: #1a1814;
  --ink-soft: #4a4640;
  --ink-mute: #7a746a;
  --ink-light: #a8a298;

  /* Bordures */
  --line: #e8e0d0;
  --line-strong: #d8ceb8;
  --line-gold: rgba(184, 147, 90, 0.25);

  /* Effets */
  --shadow-sm: 0 2px 8px rgba(26, 24, 20, 0.04);
  --shadow-md: 0 8px 30px rgba(26, 24, 20, 0.08);
  --shadow-lg: 0 20px 50px rgba(26, 24, 20, 0.12);
  --shadow-gold: 0 20px 40px rgba(184, 147, 90, 0.15);
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter Tight', -apple-system, sans-serif;
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
  font-weight: 400;
  line-height: 1.65;
  font-size: 16px;
}

.font-display {
  font-family: 'Cormorant Garamond', 'Times New Roman', serif;
  letter-spacing: -0.015em;
  font-weight: 500;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
  z-index: 100;
  mix-blend-mode: multiply;
}

/* HEADER */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 244, 237, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--ink);
  transition: opacity 0.3s;
}

.logo:hover { opacity: 0.7; }

.logo-mark {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 2.25rem;
  color: var(--gold);
  line-height: 0.9;
  font-weight: 500;
}

.logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  letter-spacing: 0.01em;
  font-weight: 500;
  line-height: 1;
}

.logo-sub {
  font-size: 0.625rem;
  letter-spacing: 0.35em;
  color: var(--ink-mute);
  margin-top: 4px;
  font-weight: 500;
}

.nav {
  display: none;
  gap: 2.75rem;
  align-items: center;
}

@media (min-width: 768px) { .nav { display: flex; } }

.nav a {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
  padding: 0.5rem 0;
}

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

.nav a:hover::after, .nav a.active::after { width: 100%; }
.nav a:hover, .nav a.active { color: var(--gold-dark); }

.btn-wa {
  display: none;
  background: var(--ink);
  color: var(--bg);
  border: none;
  padding: 0.75rem 1.25rem;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
}

@media (min-width: 640px) { .btn-wa { display: inline-block; } }
.btn-wa:hover { background: var(--gold-dark); color: var(--bg); }

.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

@media (min-width: 768px) { .menu-toggle { display: none; } }

.menu-toggle span {
  width: 24px;
  height: 1.5px;
  background: var(--ink);
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 49;
  padding: 6rem 2rem 2rem;
}

.mobile-menu.open { display: block; }

.mobile-menu a {
  display: block;
  padding: 1.25rem 0;
  color: var(--ink);
  text-decoration: none;
  font-size: 1.75rem;
  font-family: 'Cormorant Garamond', serif;
  border-bottom: 1px solid var(--line);
  transition: color 0.3s;
}

.mobile-menu a:hover { color: var(--gold-dark); }

/* LAYOUT */
.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 1024px) { .container { padding: 0 3rem; } }

.eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  color: var(--gold-dark);
  text-transform: uppercase;
  font-weight: 500;
  display: inline-block;
}

.gold-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
  margin: 3rem 0;
}

h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--ink);
}

.h1 { font-size: clamp(2.75rem, 7vw, 6rem); line-height: 0.95; }
.h2 { font-size: clamp(2rem, 5vw, 3.75rem); }
.h3 { font-size: clamp(1.5rem, 3vw, 2.25rem); }

em { color: var(--gold-dark); font-style: italic; font-weight: 500; }
a { color: var(--gold-dark); text-decoration: none; }

/* BOUTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.1rem 2.25rem;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  font-weight: 500;
  font-family: inherit;
}

.btn:hover { background: var(--ink); color: var(--bg); }

.btn-primary {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}

.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--bg);
}

.btn-gold {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}

.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--bg);
}

/* FOOTER */
.footer {
  background: var(--bg-dark);
  color: var(--bg);
  padding: 5rem 0 2rem;
  margin-top: 6rem;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }

.footer .logo-text, .footer .logo-sub { color: var(--bg); }

.footer h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
  font-weight: 500;
}

.footer ul { list-style: none; }
.footer li { margin-bottom: 0.65rem; }
.footer a { color: rgba(248, 244, 237, 0.65); font-size: 0.9rem; transition: color 0.3s; }
.footer a:hover { color: var(--gold-light); }
.footer p { color: rgba(248, 244, 237, 0.55); }

.footer-bottom {
  border-top: 1px solid rgba(248, 244, 237, 0.1);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(248, 244, 237, 0.5);
}

@media (min-width: 768px) { .footer-bottom { flex-direction: row; } }

/* ANIMATIONS */
.fade-in { animation: fadeIn 1s ease-out forwards; opacity: 0; }
@keyframes fadeIn { to { opacity: 1; transform: translateY(0); } }
.fade-up { animation: fadeUp 1s ease-out forwards; opacity: 0; transform: translateY(30px); }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.5s; }
.delay-4 { animation-delay: 0.7s; }

/* BOUTEILLE */
.bottle-wrap { position: relative; display: flex; align-items: center; justify-content: center; }

.bottle-glow {
  position: absolute;
  inset: -15%;
  background: radial-gradient(circle at 50% 40%, rgba(184, 147, 90, 0.18), transparent 65%);
  filter: blur(50px);
  z-index: 0;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.bottle-svg {
  position: relative;
  z-index: 1;
  animation: float 6s ease-in-out infinite;
  filter: drop-shadow(0 25px 30px rgba(26, 24, 20, 0.15));
}

.label-text { transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1); }

/* SCROLLBAR */
.custom-scroll::-webkit-scrollbar { width: 6px; }
.custom-scroll::-webkit-scrollbar-track { background: transparent; }
.custom-scroll::-webkit-scrollbar-thumb { background: var(--line-strong); border-radius: 3px; }
.custom-scroll::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* CATALOGUE */
.catalogue-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding: 3rem 0;
}

@media (min-width: 1024px) { .catalogue-grid { grid-template-columns: 5fr 7fr; gap: 5rem; } }

.bottle-column { position: relative; }

@media (min-width: 1024px) {
  .bottle-column { position: sticky; top: 6rem; align-self: start; }
}

.bottle-aspect {
  aspect-ratio: 3/4;
  max-width: 420px;
  margin: 0 auto;
}

.size-selector { margin-top: 2.5rem; }

.size-label {
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  color: var(--ink-mute);
  margin-bottom: 1rem;
  font-weight: 500;
}

.size-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.6rem; }

.size-btn {
  padding: 1.2rem 0.5rem;
  background: var(--bg-card);
  border: 1px solid var(--line-strong);
  color: var(--ink);
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
  font-family: inherit;
}

.size-btn:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.size-btn.active {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
  box-shadow: var(--shadow-md);
}

.size-volume {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  display: block;
  font-weight: 500;
}

.size-price {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  margin-top: 0.3rem;
  opacity: 0.75;
  font-weight: 500;
}

.quick-add {
  margin-top: 1.5rem;
  background: var(--bg-card);
  padding: 1.5rem;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.quick-add-label {
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  color: var(--gold-dark);
  margin-bottom: 1rem;
  font-weight: 500;
}

.quick-add-row { display: flex; gap: 0.75rem; align-items: center; }

.quick-input {
  flex: 1;
  background: transparent;
  border: none;
  border-bottom: 1.5px solid var(--line-strong);
  outline: none;
  padding: 0.5rem 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.85rem;
  color: var(--ink);
  font-weight: 500;
  width: 100%;
  min-width: 0;
}

.quick-input:focus { border-color: var(--gold); }
.quick-input::placeholder { color: var(--ink-light); font-style: italic; }

.search-bar { position: relative; margin-bottom: 1.5rem; }

.search-input {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--line);
  outline: none;
  padding: 1rem 1.25rem 1rem 3rem;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  transition: all 0.3s;
}

.search-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px var(--gold-soft);
}

.search-input::placeholder { color: var(--ink-light); }

.search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  pointer-events: none;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.filter-btn {
  padding: 0.6rem 1.3rem;
  background: var(--bg-card);
  border: 1px solid var(--line-strong);
  color: var(--ink);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  font-family: inherit;
}

.filter-btn:hover { border-color: var(--gold); }

.filter-btn.active {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}

.count-badge {
  margin-left: auto;
  font-size: 0.78rem;
  color: var(--ink-mute);
  font-weight: 500;
}

.parfum-list {
  margin-top: 1.5rem;
  max-height: calc(100vh - 220px);
  overflow-y: auto;
  padding-right: 0.5rem;
}

@media (max-width: 1023px) { .parfum-list { max-height: none; } }

.parfum-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.15rem 1rem;
  border-bottom: 1px solid var(--line);
  transition: all 0.3s;
  cursor: pointer;
  gap: 1rem;
  background: transparent;
}

.parfum-item:hover {
  background: var(--bg-card);
  padding-left: 1.5rem;
  border-bottom-color: var(--gold-light);
}

.parfum-info { display: flex; align-items: center; gap: 1.5rem; flex: 1; min-width: 0; }

.parfum-num {
  font-family: 'Cormorant Garamond', serif;
  color: var(--gold-dark);
  font-size: 1.65rem;
  flex-shrink: 0;
  width: 3.5rem;
  font-weight: 500;
  line-height: 1;
}

.parfum-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  transition: color 0.3s;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 500;
  color: var(--ink);
}

.parfum-item:hover .parfum-name { color: var(--gold-dark); }

.parfum-genre {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  color: var(--ink-mute);
  margin-top: 0.25rem;
  font-weight: 500;
}

.add-btn {
  background: var(--ink);
  border: none;
  color: var(--bg);
  padding: 0.65rem 1.1rem;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  cursor: pointer;
  transition: all 0.3s;
  flex-shrink: 0;
  font-family: inherit;
  font-weight: 500;
}

.add-btn:hover { background: var(--gold-dark); }

@media (min-width: 768px) {
  .add-btn { opacity: 0; transform: translateX(10px); }
  .parfum-item:hover .add-btn { opacity: 1; transform: translateX(0); }
}

/* PANIER */
.cart-drawer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-dark);
  color: var(--bg);
  z-index: 60;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 -10px 40px rgba(26, 24, 20, 0.15);
}

.cart-drawer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.cart-drawer.hidden-cart { transform: translateY(calc(100% - 76px)); }
.cart-drawer.empty { transform: translateY(100%); }

.cart-inner { max-width: 1320px; margin: 0 auto; padding: 0 1.5rem; }

.cart-toggle {
  width: 100%;
  padding: 1.35rem 0;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  color: var(--bg);
  font-family: inherit;
}

.cart-toggle-left { display: flex; align-items: center; gap: 1.1rem; }

.cart-count {
  width: 2.75rem;
  height: 2.75rem;
  background: var(--gold);
  color: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 500;
}

.cart-label {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  color: rgba(248, 244, 237, 0.55);
  text-align: left;
  font-weight: 500;
}

.cart-total {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  text-align: left;
  margin-top: 2px;
  font-weight: 500;
}

.chevron { transition: transform 0.3s; }
.cart-drawer.hidden-cart .chevron { transform: rotate(180deg); }
.cart-content { padding-bottom: 1.5rem; }

.cart-items {
  max-height: 260px;
  overflow-y: auto;
  margin-bottom: 1.25rem;
  border-top: 1px solid rgba(248, 244, 237, 0.1);
  padding-top: 1rem;
}

.cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(248, 244, 237, 0.08);
  gap: 1rem;
}

.cart-item-info { display: flex; align-items: center; gap: 1rem; flex: 1; min-width: 0; }

.cart-item-num {
  font-family: 'Cormorant Garamond', serif;
  color: var(--gold-light);
  font-size: 1.2rem;
  width: 3rem;
  flex-shrink: 0;
  font-weight: 500;
}

.cart-item-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 500;
}

.cart-item-size {
  font-size: 0.7rem;
  color: rgba(248, 244, 237, 0.5);
  letter-spacing: 0.1em;
  margin-top: 2px;
}

.cart-item-actions { display: flex; align-items: center; gap: 1rem; }

.cart-item-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 500;
}

.cart-remove {
  background: transparent;
  border: none;
  color: rgba(248, 244, 237, 0.4);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  padding: 0 0.25rem;
  transition: color 0.3s;
}

.cart-remove:hover { color: var(--gold-light); }

.cart-wa-btn {
  width: 100%;
  background: var(--gold);
  color: var(--bg-dark);
  border: none;
  padding: 1.2rem;
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
  font-family: inherit;
}

.cart-wa-btn:hover { background: var(--gold-light); }

/* HERO */
.hero {
  position: relative;
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  padding: 4rem 0;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -10%;
  width: 60%;
  height: 80%;
  background: radial-gradient(circle, rgba(184, 147, 90, 0.08), transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  width: 100%;
  position: relative;
}

@media (min-width: 1024px) { .hero-grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }

.hero h1 {
  font-size: clamp(2.75rem, 8vw, 6.5rem);
  line-height: 0.92;
  margin-bottom: 1.75rem;
}

.hero-tagline {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 480px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}

.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-bottle { position: relative; order: -1; }

@media (min-width: 1024px) { .hero-bottle { order: 0; } }

.hero-bottle .bottle-aspect { max-width: 380px; }

@media (min-width: 1024px) { .hero-bottle .bottle-aspect { max-width: 480px; } }

/* FEATURES */
.features {
  padding: 6rem 0;
  background: var(--bg-card);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.features-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 640px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .features-grid { grid-template-columns: repeat(4, 1fr); } }

.feature {
  text-align: center;
  padding: 2rem 1.25rem;
  transition: transform 0.3s;
}

.feature:hover { transform: translateY(-4px); }

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  border-radius: 50%;
  background: var(--gold-soft);
}

.feature h3 { font-size: 1.5rem; margin-bottom: 0.85rem; color: var(--ink); }
.feature p { font-size: 0.95rem; color: var(--ink-soft); line-height: 1.65; }

/* NUMBERS */
.numbers-section { padding: 6rem 0; text-align: center; }

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}

@media (min-width: 768px) { .numbers-grid { grid-template-columns: repeat(4, 1fr); } }

.number-item {
  border-left: 1.5px solid var(--gold);
  padding: 1rem 1.5rem;
  text-align: left;
}

.number-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  color: var(--ink);
  line-height: 0.95;
  font-weight: 500;
}

.number-label {
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  color: var(--ink-mute);
  margin-top: 0.75rem;
  font-weight: 500;
}

/* CITIES */
.local-cta {
  padding: 6rem 0;
  background: var(--bg-card);
  text-align: center;
  border-top: 1px solid var(--line);
}

.cities {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin: 2.5rem 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 500;
}

.cities span { color: var(--gold-dark); position: relative; }

.cities span:not(:last-child)::after {
  content: '•';
  position: absolute;
  right: -1.25rem;
  color: var(--ink-light);
}

/* PAGES STATIQUES */
.page-header { padding: 5rem 0 3rem; text-align: center; }
.page-header h1 { margin: 1rem 0; }

.page-header p {
  color: var(--ink-soft);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
}

.about-section { padding: 3rem 0; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) { .about-grid { grid-template-columns: 1fr 1fr; } }

.about-text p {
  margin-bottom: 1.35rem;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.75;
}

.about-text p strong { color: var(--ink); font-weight: 500; }

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3.5rem;
}

@media (min-width: 768px) { .values-grid { grid-template-columns: repeat(3, 1fr); } }

.value-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  padding: 2.5rem 2rem;
  transition: all 0.3s;
}

.value-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.value-card h3 { font-size: 1.6rem; margin-bottom: 1rem; color: var(--gold-dark); }
.value-card p { color: var(--ink-soft); font-size: 0.95rem; line-height: 1.7; }

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding: 3rem 0;
}

@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; } }

.contact-info-block {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--line);
}

.contact-info-block:last-child { border-bottom: none; }
.contact-info-block .eyebrow { margin-bottom: 0.85rem; }
.contact-info-block h3 { font-size: 1.65rem; margin-bottom: 0.85rem; }

.contact-info-block a, .contact-info-block p {
  color: var(--ink-soft);
  font-size: 1.02rem;
  display: block;
  margin: 0.35rem 0;
  line-height: 1.7;
}

.contact-info-block a { color: var(--gold-dark); }
.contact-info-block a:hover { color: var(--ink); }

.contact-wa-large {
  display: inline-flex !important;
  align-items: center;
  gap: 0.75rem;
  background: #25D366;
  color: white !important;
  padding: 1.25rem 2.25rem;
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  font-weight: 600;
  text-decoration: none;
  margin-top: 1.25rem;
  transition: all 0.3s;
  font-family: inherit;
}

.contact-wa-large:hover {
  background: #1ea952;
  color: white !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.25);
}

/* TOAST */
.toast {
  position: fixed;
  top: 5.5rem;
  right: 1.5rem;
  background: var(--ink);
  color: var(--bg);
  padding: 1rem 1.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  z-index: 100;
  opacity: 0;
  transform: translateX(110%);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  box-shadow: var(--shadow-lg);
}

.toast.show { opacity: 1; transform: translateX(0); }

@media (max-width: 640px) {
  .toast {
    top: auto;
    bottom: 5rem;
    right: 1rem;
    left: 1rem;
    transform: translateY(150%);
  }
  .toast.show { transform: translateY(0); }
}
