/* ─────────────────────────────────────────────────────
   layout.css — Header, Hero, Or, Soin, Contact, Footer
───────────────────────────────────────────────────── */

/* ── HEADER ── */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 99;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 32px; height: 58px;
  background: rgba(250,250,247,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--br3);
}
.hd-logo {
  font-family: 'Cormorant', serif;
  font-size: 17px; font-weight: 400;
  letter-spacing: 4px; text-transform: uppercase;
}
.hd-nav { display: flex; gap: 28px; }
.hd-nav a {
  font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase;
  font-weight: 400; color: var(--br); transition: color .2s;
}
.hd-nav a:hover { color: var(--k); }
.hd-tel { font-size: 12px; letter-spacing: 1px; color: var(--br); font-weight: 300; }
.hd-tel a { color: var(--br); }

/* Hamburger — affiché seulement en mobile (voir mobile.css) */
.hd-burger {
  display: none; background: none; border: none;
  cursor: pointer; padding: 6px;
  flex-direction: column; gap: 5px;
}
.hd-burger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--k); transition: all .3s;
}

/* Menu mobile plein écran */
#mob-nav {
  position: fixed; inset: 0; z-index: 198;
  background: var(--k);
  display: none;
  flex-direction: column;
  align-items: center; justify-content: center;
}
#mob-nav.open { display: flex; animation: mobNavIn .25s ease; }
@keyframes mobNavIn { from { opacity: 0; } to { opacity: 1; } }

.mob-nav-links { display: flex; flex-direction: column; align-items: center; gap: 4px; width: 100%; }
.mob-nav-links a {
  font-family: 'Cormorant', serif;
  font-size: 36px; font-weight: 300; font-style: italic;
  color: rgba(250,250,247,.65); letter-spacing: 1px;
  padding: 14px 40px; width: 100%; text-align: center;
  transition: color .2s, background .2s;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.mob-nav-links a:first-child { border-top: 1px solid rgba(255,255,255,.05); }
.mob-nav-links a:hover, .mob-nav-links a:active { color: var(--w); background: rgba(255,255,255,.04); }

.mob-nav-footer { margin-top: 36px; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.mob-nav-tel    { font-size: 16px; color: rgba(250,250,247,.45); letter-spacing: 2px; }
.mob-nav-insta  { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--go2); }

.mob-nav-close {
  position: absolute; top: 18px; right: 20px;
  background: none; border: none; color: rgba(250,250,247,.4);
  font-size: 28px; cursor: pointer; line-height: 1; transition: color .2s;
}
.mob-nav-close:hover { color: var(--w); }

/* ── HERO ── */
.hero {
  padding-top: 58px;
  height: 100vh; min-height: 640px;
  display: grid; grid-template-columns: 55% 45%;
  overflow: hidden;
}
.hero-img { position: relative; overflow: hidden; background: var(--w2); }
.hero-img img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center 30%;
  transform: scale(1.03);
  transition: transform 12s ease, filter .8s ease;
  filter: contrast(1.05) saturate(1.12) brightness(1.01) sepia(0.04);
}
.hero-img:hover img { transform: scale(1); filter: contrast(1.07) saturate(1.16) brightness(1.03) sepia(0.03); }
.hero-tag {
  position: absolute; bottom: 28px; right: 28px;
  writing-mode: vertical-rl; font-size: 9px; letter-spacing: 3px;
  text-transform: uppercase; color: rgba(250,250,247,0.6);
}
.hero-copy {
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 48px 52px 52px; background: var(--w); position: relative;
}
.hero-yr { position: absolute; top: 40px; right: 40px; font-size: 10px; letter-spacing: 2px; color: var(--br3); text-transform: uppercase; }
.hero-overline { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--go); margin-bottom: 20px; }
.hero-h1 {
  font-family: 'Cormorant', serif;
  font-size: clamp(52px, 6.5vw, 96px); font-weight: 300; line-height: .96;
  letter-spacing: -1px; color: var(--k); margin-bottom: 20px;
}
.hero-h1 em { font-style: italic; font-weight: 300; }
.hero-h1 .small { font-size: .52em; display: block; color: var(--br2); letter-spacing: 2px; font-style: normal; font-weight: 300; margin-bottom: 6px; }
.hero-line   { width: 48px; height: 1px; background: var(--br3); margin-bottom: 20px; }
.hero-desc   { font-size: 13.5px; color: var(--br); line-height: 1.8; max-width: 320px; margin-bottom: 40px; }
.hero-btns   { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── ANNONCE ── */
.annonce {
  background: var(--k); color: var(--w);
  padding: 18px 32px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.annonce-left  { font-family: 'Cormorant', serif; font-size: 18px; font-style: italic; font-weight: 300; }
.annonce-right { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--br2); }
.dot-live {
  display: inline-block; width: 5px; height: 5px;
  border-radius: 50%; background: #5CDB8F;
  margin-right: 7px; vertical-align: middle;
  animation: pulse-live 2s infinite;
}
@keyframes pulse-live { 0%,100%{opacity:1} 50%{opacity:.3} }

/* ── PRIX DE L'OR ── */
.or-section { background: var(--k2); display: grid; grid-template-columns: 1fr 1fr; }
.or-col     { padding: 56px 48px; }
.or-col-a   { border-right: 1px solid rgba(255,255,255,.06); }
.or-col-title, .or-col-b-title {
  font-family: 'Cormorant', serif;
  font-size: 32px; font-weight: 300; font-style: italic;
  color: var(--w); margin-bottom: 32px; line-height: 1.1;
}
.or-col-b-title { margin-bottom: 28px; }
.or-rows   { display: flex; flex-direction: column; }
.or-row    { display: flex; align-items: baseline; justify-content: space-between; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.06); }
.or-row:last-child { border-bottom: none; }
.or-karat  { font-size: 11px; letter-spacing: 1.5px; color: var(--br2); text-transform: uppercase; }
.or-val    { font-family: 'Cormorant', serif; font-size: 26px; font-weight: 400; color: var(--w); }
.or-unit   { font-size: 10px; color: var(--br2); margin-left: 4px; }
.or-note   { margin-top: 28px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.06); font-size: 12px; line-height: 1.8; color: var(--br2); }
.or-note strong { color: rgba(250,250,247,.7); font-weight: 400; }
.or-promises  { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.or-promise   { display: flex; gap: 14px; align-items: flex-start; }
.or-promise-n { font-family: 'Cormorant', serif; font-size: 22px; color: rgba(250,250,247,.15); font-weight: 300; line-height: 1; flex-shrink: 0; width: 28px; }
.or-promise-text { font-size: 13px; color: var(--br2); line-height: 1.7; }
.or-promise-text strong { color: rgba(250,250,247,.65); font-weight: 400; display: block; margin-bottom: 2px; font-size: 13.5px; }

/* ── ENTRETIEN (fond sombre — rupture visuelle avec le catalogue) ── */
.soin { background: var(--k); display: grid; grid-template-columns: 1fr 1fr; }
.soin-img { overflow: hidden; background: var(--k2); min-height: 500px; position: relative; }
.soin-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, transparent 78%, rgba(18,15,9,.75) 100%);
  pointer-events: none;
}
.soin-img img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center 30%;
  filter: contrast(1.1) saturate(1.2) brightness(0.88) sepia(0.05);
}
.soin-content  { padding: 72px 60px; }
.soin-overline { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--go2); margin-bottom: 16px; }
.soin-title    { font-family: 'Cormorant', serif; font-size: clamp(32px, 4vw, 54px); font-weight: 300; line-height: 1.05; color: rgba(250,250,247,.9); margin-bottom: 40px; }
.soin-title em { font-style: italic; }
.soin-items    { display: flex; flex-direction: column; }
.soin-item     { padding: 22px 0; border-bottom: 1px solid rgba(255,255,255,.07); display: flex; gap: 20px; align-items: flex-start; }
.soin-item:first-child { padding-top: 0; }
.soin-item:last-child  { border-bottom: none; }
.soin-n    { font-family: 'Cormorant', serif; font-size: 14px; font-style: italic; color: rgba(250,250,247,.18); flex-shrink: 0; width: 20px; margin-top: 2px; }
.soin-name { font-family: 'Cormorant', serif; font-size: 19px; font-weight: 400; color: rgba(250,250,247,.82); margin-bottom: 5px; }
.soin-text { font-size: 12.5px; color: rgba(250,250,247,.42); line-height: 1.75; }

/* ── INSTAGRAM STRIP ── */
.insta-strip {
  background: var(--w2); border-top: 1px solid var(--br3); border-bottom: 1px solid var(--br3);
  padding: 28px 48px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 20px;
}
.insta-strip-label  { font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--br2); margin-bottom: 4px; }
.insta-strip-handle { font-family: 'Cormorant', serif; font-size: 22px; font-weight: 300; font-style: italic; color: var(--k); }
.insta-strip-btn    {
  display: inline-block;
  font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; font-weight: 400;
  color: var(--k); border: 1px solid var(--br3);
  padding: 12px 24px; transition: all .3s; white-space: nowrap;
}
.insta-strip-btn:hover { background: var(--k); color: var(--w); border-color: var(--k); }

/* ── CONTACT ── */
.contact-wrap { display: grid; grid-template-columns: 5fr 7fr; }
.contact-aside { background: var(--k); color: var(--w); padding: 72px 52px; display: flex; flex-direction: column; gap: 40px; }
.ca-brand { font-family: 'Cormorant', serif; font-size: 36px; font-weight: 300; font-style: italic; letter-spacing: 1px; line-height: 1; color: var(--w); }
.ca-lbl   { font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: var(--go2); margin-bottom: 8px; }
.ca-val   { font-size: 15px; color: rgba(250,250,247,.75); line-height: 1.75; font-family: 'Cormorant', serif; font-weight: 300; }
.ca-val a { color: rgba(250,250,247,.75); transition: color .2s; }
.ca-val a:hover { color: var(--w); }
.ca-sep   { height: 1px; background: rgba(255,255,255,.07); }
.ca-note  { font-size: 12px; color: rgba(250,250,247,.35); line-height: 1.7; font-style: italic; }

.contact-form-wrap { background: var(--w); padding: 72px 56px; }
.cf-title { font-family: 'Cormorant', serif; font-size: 34px; font-weight: 300; color: var(--k); margin-bottom: 6px; }
.cf-sub   { font-size: 12.5px; color: var(--br2); margin-bottom: 36px; }
.cf-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.cf-field { margin-bottom: 16px; }
.cf-field label { display: block; font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: var(--br2); margin-bottom: 7px; }
.cf-field input,
.cf-field textarea,
.cf-field select {
  width: 100%; background: var(--w2); border: none;
  border-bottom: 1px solid var(--br3);
  padding: 11px 0 11px 14px;
  color: var(--k); font-family: 'Raleway', sans-serif; font-size: 14px; font-weight: 300;
  outline: none; transition: border-color .25s;
  -webkit-appearance: none; border-radius: 0;
}
.cf-field input:focus, .cf-field textarea:focus { border-bottom-color: var(--k); background: var(--w3); }
.cf-field textarea { resize: vertical; min-height: 100px; }
.cf-submit {
  width: 100%; background: var(--k); color: var(--w); border: none;
  padding: 15px; cursor: pointer;
  font-family: 'Raleway', sans-serif; font-size: 10px;
  letter-spacing: 3px; text-transform: uppercase; font-weight: 500;
  margin-top: 8px; transition: background .3s;
}
.cf-submit:hover { background: var(--k2); }
.cf-success      { text-align: center; padding: 48px; display: none; }
.cf-success .s-m { font-family: 'Cormorant', serif; font-size: 48px; color: var(--go2); margin-bottom: 16px; }
.cf-success h3   { font-family: 'Cormorant', serif; font-size: 26px; font-weight: 400; margin-bottom: 8px; }
.cf-success p    { font-size: 13px; color: var(--br2); }

/* ── MAP STRIP ── */
.map-strip {
  background: var(--w2); border-top: 1px solid var(--br3);
  padding: 22px 48px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.map-addr { font-family: 'Cormorant', serif; font-size: 16px; font-style: italic; color: var(--br); }
.map-link { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--k); border-bottom: 1px solid var(--br3); padding-bottom: 1px; transition: border-color .2s; }
.map-link:hover { border-color: var(--k); }

/* ── FOOTER ── */
footer {
  background: var(--k); color: rgba(250,250,247,.5);
  padding: 36px 48px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.ft-brand { font-family: 'Cormorant', serif; font-size: 17px; font-weight: 300; letter-spacing: 3px; text-transform: uppercase; color: rgba(250,250,247,.7); }
.ft-links { display: flex; gap: 24px; flex-wrap: wrap; }
.ft-links a { font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(250,250,247,.35); transition: color .2s; }
.ft-links a:hover { color: rgba(250,250,247,.7); }
.ft-credit   { font-size: 10px; color: rgba(250,250,247,.2); }
.ft-credit a { color: var(--go2); transition: color .2s; }
.ft-credit a:hover { color: rgba(250,250,247,.6); }
