/* ═══════════════════════════════════════
   LE NEOMAD — Shared stylesheet
═══════════════════════════════════════ */

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

:root {
  --coral:  #D94F3B;
  --c-lite: #F2C4BB;
  --c-pale: #FAF0EE;
  --paper:  #ffffff;
  --sand:   #F0E8DC;
  --ink:    #1A1410;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Jost', sans-serif;
}

/* ══════════════════════════════════════
   HEADER
══════════════════════════════════════ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; height: 68px;
  background: var(--paper);
  border-bottom: 1.5px solid var(--coral);
  display: flex; align-items: center;
  padding: 0 52px; z-index: 500;
}

.sh-logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.sh-logo img { height: 38px; width: auto; display: block; }

/* Nav — centrée */
.sh-nav {
  position: absolute; left: 50%; transform: translateX(-50%);
  display: flex; align-items: center; gap: 40px;
}
.sh-nav a {
  font-family: var(--sans); font-weight: 300; font-size: 0.62rem;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--ink); text-decoration: none;
  position: relative; transition: color 0.22s; white-space: nowrap;
}
.sh-nav a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1.5px; background: var(--coral);
  transform: scaleX(0); transform-origin: left; transition: transform 0.28s ease;
}
.sh-nav a:hover        { color: var(--coral); }
.sh-nav a:hover::after { transform: scaleX(1); }
.sh-nav a.sh-active        { color: var(--coral); font-weight: 400; }
.sh-nav a.sh-active::after { transform: scaleX(1); }

/* Droite */
.sh-right { margin-left: auto; display: flex; align-items: center; gap: 14px; flex-shrink: 0; }

/* Boutique pill */
.sh-shop {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: var(--sans); font-size: 0.58rem;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--coral); text-decoration: none;
  border: 1px solid var(--coral); border-radius: 2px;
  padding: 5px 11px;
  transition: background 0.22s, color 0.22s;
  white-space: nowrap;
}
.sh-shop::after {
  content: '';
  display: inline-block; width: 8px; height: 8px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10' fill='none' stroke='%23D94F3B' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 8L8 2M5 2h3v3'/%3E%3C/svg%3E");
  background-size: contain; background-repeat: no-repeat; flex-shrink: 0;
}
.sh-shop:hover { background: var(--coral); color: white; }
.sh-shop:hover::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10' fill='none' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 8L8 2M5 2h3v3'/%3E%3C/svg%3E");
}

.sh-right-sep { width: 1px; height: 16px; background: rgba(217,79,59,0.2); }

/* FR / EN */
.sh-lang { display: flex; align-items: center; }
.sh-lang button {
  font-family: var(--sans); font-size: 0.6rem; letter-spacing: 0.18em; font-weight: 300;
  background: none; border: none; color: rgba(26,20,16,0.38);
  cursor: pointer; padding: 5px 6px; transition: color 0.2s; text-transform: uppercase;
}
.sh-lang .sh-sep { font-size: 0.46rem; color: rgba(217,79,59,0.3); user-select: none; }
.sh-lang button.sh-on { color: var(--coral); font-weight: 400; }
.sh-lang button:hover:not(.sh-on) { color: var(--ink); }

/* Hamburger — mobile uniquement */
.sh-burger {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  width: 32px; height: 32px;
  background: none; border: none; cursor: pointer; padding: 4px; flex-shrink: 0;
}
.sh-burger span {
  display: block; width: 20px; height: 1.5px;
  background: var(--ink); border-radius: 2px;
  transition: transform 0.28s ease, opacity 0.2s ease;
  transform-origin: center;
}

/* Drawer mobile */
.sh-drawer {
  display: none;
  position: fixed; top: 58px; left: 0; right: 0;
  background: var(--paper);
  border-bottom: 1.5px solid var(--coral);
  padding: 8px 0 14px;
  z-index: 499; flex-direction: column;
}
.sh-drawer.open { display: flex; }
.sh-drawer a {
  font-family: var(--sans); font-weight: 300;
  font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink); text-decoration: none;
  padding: 14px 28px;
  border-bottom: 1px solid rgba(217,79,59,0.08);
  transition: color 0.2s, background 0.2s;
}
.sh-drawer a:last-child { border-bottom: none; }
.sh-drawer a:hover, .sh-drawer a.sh-active { color: var(--coral); background: rgba(217,79,59,0.04); }
.sh-drawer a.sh-shop-mobile {
  color: var(--coral);
  display: inline-flex; align-items: center; gap: 6px;
}
.sh-drawer a.sh-shop-mobile::after {
  content: '';
  display: inline-block; width: 9px; height: 9px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10' fill='none' stroke='%23D94F3B' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 8L8 2M5 2h3v3'/%3E%3C/svg%3E");
  background-size: contain; background-repeat: no-repeat;
}

/* ══════════════════════════════════════
   MAIN OFFSET
══════════════════════════════════════ */
main { padding-top: 68px; }

/* ══════════════════════════════════════
   HERO PHOTO
══════════════════════════════════════ */
.hero-img {
  position: relative; height: 56vh; min-height: 300px; overflow: hidden;
}
.hero-img img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center 30%; display: block;
}
.hero-img::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to bottom, transparent 30%, rgba(255,255,255,0.95) 100%);
  pointer-events: none;
}
.hero-img-text {
  position: absolute; bottom: 44px; left: 52px; z-index: 2;
}
.hero-img-text h1 {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(2.4rem, 6.5vw, 5.2rem); line-height: .95; color: var(--ink);
}
.hero-img-text h1 em { font-style: italic; color: var(--coral); }
.hero-img-text p {
  font-family: var(--sans); font-weight: 200; font-size: .68rem;
  letter-spacing: .22em; text-transform: uppercase;
  color: rgba(26,20,16,.5); margin-top: 12px;
}

/* ══════════════════════════════════════
   ILLUSTRATION STRIP
══════════════════════════════════════ */
.illus-strip { overflow: hidden; height: 50px; display: flex; align-items: center; }
.illus-strip.s-coral { background: var(--coral); }
.illus-strip.s-sand  { background: var(--sand); }
.strip-inner {
  display: flex; align-items: center; flex-shrink: 0;
  animation: stripMove 38s linear infinite; white-space: nowrap;
}
.strip-inner img { height: 36px; width: auto; margin-right: 52px; flex-shrink: 0; }
.illus-strip.s-coral .strip-inner img { filter: brightness(0) invert(1); opacity: 0.28; }
.illus-strip.s-sand  .strip-inner img { opacity: 0.16; }
@keyframes stripMove {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.site-footer {
  padding: 16px 52px 20px;
  border-top: 1px solid rgba(217,79,59,0.1);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 10px; background: var(--paper);
}
.site-footer p {
  font-family: var(--sans); font-size: 0.46rem;
  letter-spacing: 0.1em; text-transform: uppercase; color: rgba(26,20,16,0.28);
}
.site-footer a { color: inherit; text-decoration: none; transition: color 0.2s; }
.site-footer a:hover { color: var(--coral); }

/* ══════════════════════════════════════
   SCROLLBAR
══════════════════════════════════════ */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--sand); }
::-webkit-scrollbar-thumb { background: var(--c-lite); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--coral); }

/* ══════════════════════════════════════
   RESPONSIVE MOBILE
══════════════════════════════════════ */
@media (max-width: 700px) {
  .site-header   { padding: 0 16px; height: 58px; }
  .sh-nav        { display: none; }
  .sh-right-sep  { display: none; }
  .sh-shop       { display: none; }
  .sh-lang       { display: none; }
  .sh-burger     { display: flex; }
  main           { padding-top: 58px; }
  .hero-img      { height: 48vh; }
  .hero-img-text { left: 20px; bottom: 24px; }
  .hero-img-text h1 { font-size: clamp(1.8rem, 7vw, 3rem); }
  .site-footer   { padding: 14px 20px 18px; flex-direction: column; }
}
