/* ==========================================================================
   Ongles & Marseille — Le Guide Studio Gold
   Design tokens — palette validee juillet 2026
   Base ivoire:      #FDFBFC
   Parme tres clair: #EDE6F7
   Parme clair:      #C6B4E3
   Parme profond:    #9B82C4
   Rose tres clair:  #FBEDF1
   Rose poudre:      #EFC4CF
   Rose profond:     #D98FA1
   Encre:            #332B3D
   Or (logo only):   #C6A15B
   ========================================================================== */

:root {
  --ivory: #FDFBFC;
  --parme-soft: #EDE6F7;
  --parme: #C6B4E3;
  --parme-deep: #9B82C4;
  --rose-soft: #FBEDF1;
  --rose: #EFC4CF;
  --rose-deep: #D98FA1;
  --ink: #332B3D;
  --ink-soft: #5C5266;
  --taupe: #8B7E71;
  --gold: #C6A15B;
  --gold-deep: #8A6A32;
  --line: #E6DEE9;
  --white: #FFFFFF;

  --font-display: 'Fraunces', 'Iowan Old Style', Georgia, serif;
  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-label: 'Space Grotesk', 'Manrope', sans-serif;

  --radius: 2px;
  --max-w: 1080px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: linear-gradient(165deg, var(--parme-soft) 0%, var(--rose-soft) 55%, var(--parme-soft) 100%);
  background-attachment: fixed;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.5em;
  color: var(--ink);
}

h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 500; letter-spacing: -0.01em; }
h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); }
h3 { font-size: 1.3rem; }

p { margin: 0 0 1em; color: var(--ink-soft); }

.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Eyebrow / labels ---------- */
.eyebrow {
  font-family: var(--font-label);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.76rem;
  color: var(--parme-deep);
  font-weight: 600;
  margin-bottom: 0.9em;
  display: inline-block;
}

/* ---------- Polish swatch strip — signature motif ---------- */
.swatch-strip {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 28px 0;
}
.swatch {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.06);
  flex-shrink: 0;
}
.swatch.s1 { background: var(--gold); width: 30px; height: 30px; }
.swatch.s2 { background: var(--rose); }
.swatch.s3 { background: var(--ink); }
.swatch.s4 { background: var(--parme-soft); box-shadow: inset 0 0 0 1px var(--line); }
.swatch.s5 { background: var(--parme-deep); }
.swatch-strip.center { justify-content: center; }
.swatch-strip.small .swatch { width: 12px; height: 12px; }
.swatch-strip.small .swatch.s1 { width: 16px; height: 16px; }

/* ---------- Header / nav ---------- */
header.site {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(253, 251, 252, 0.88);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.brand {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--ink);
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.brand .gold-word { color: var(--gold-deep); font-style: italic; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  text-decoration: none;
  font-size: 0.92rem;
  color: var(--ink-soft);
  font-weight: 600;
}
.nav-links a:hover { color: var(--rose-deep); }
.nav-cta {
  background: var(--ink);
  color: var(--ivory) !important;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-family: var(--font-label);
  font-size: 0.85rem !important;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.nav-cta:hover { background: var(--rose-deep); color: var(--ink) !important; }

/* ---------- Hero ---------- */
.hero {
  padding: 88px 0 64px;
  text-align: center;
}
.hero p.lede {
  max-width: 640px;
  margin: 0 auto 1.6em;
  font-size: 1.15rem;
}
.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 8px; }

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-label);
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid var(--ink);
  transition: all 0.15s ease;
}
.btn-primary { background: var(--ink); color: var(--ivory); }
.btn-primary:hover { background: var(--rose-deep); border-color: var(--rose-deep); color: var(--white); }
.btn-ghost { background: transparent; color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--ivory); }
.btn-accent { background: var(--rose-deep); border-color: var(--rose-deep); color: #4A1F2B; }
.btn-accent:hover { background: var(--parme-deep); border-color: var(--parme-deep); color: var(--white); }

/* ---------- Photo placeholder ---------- */
.photo-ph {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--parme-soft), var(--rose-soft) 140%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--taupe);
  font-family: var(--font-label);
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  padding: 20px;
}
.photo-ph.square { aspect-ratio: 1/1; }
.photo-ph.wide { aspect-ratio: 16/9; }

.photo-real { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.photo-real img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo-real.square { aspect-ratio: 1/1; }
.photo-real.wide { aspect-ratio: 16/9; }
.photo-real.portrait { aspect-ratio: 4/5; }

/* ---------- Sections ---------- */
section { padding: 64px 0; }
.section-alt { background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-ink { background: var(--ink); color: var(--ivory); }
.section-ink h2, .section-ink h3 { color: var(--ivory); }
.section-ink p { color: #C9BFCF; }
.section-head { max-width: 640px; margin: 0 auto 40px; text-align: center; }

/* ---------- About / grid ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 760px) { .about-grid { grid-template-columns: 1fr; gap: 32px; } }

/* ---------- Services ---------- */
.svc-category { margin-bottom: 44px; }
.svc-category:last-child { margin-bottom: 0; }
.svc-cat-title {
  font-family: var(--font-label);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.9rem;
  color: var(--rose-deep);
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
  margin-bottom: 4px;
  font-weight: 700;
}
.svc-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.svc-row:last-child { border-bottom: none; }
.svc-name { font-weight: 600; }
.svc-name .svc-note { display: block; font-weight: 400; color: var(--taupe); font-size: 0.85rem; margin-top: 2px; }
.svc-price {
  font-family: var(--font-label);
  font-weight: 700;
  white-space: nowrap;
  color: var(--parme-deep);
}

/* ---------- Cards ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 28px;
  border-radius: var(--radius);
}
.card h3 { margin-bottom: 0.4em; }
.card .num {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--rose-deep);
  font-size: 1.6rem;
  display: block;
  margin-bottom: 10px;
}

/* ---------- Article list on homepage ---------- */
.article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}
.article-card {
  text-decoration: none;
  display: block;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}
.article-card:hover { box-shadow: 0 10px 30px rgba(155, 130, 196, 0.16); transform: translateY(-2px); }
.article-card .ac-body { padding: 22px; }
.article-card .eyebrow { color: var(--rose-deep); }
.article-card h3 { font-size: 1.15rem; margin-bottom: 0.5em; color: var(--ink); }
.article-card p { font-size: 0.92rem; margin-bottom: 0; }

/* ---------- FAQ ---------- */
.faq-item { border-bottom: 1px solid var(--line); padding: 22px 0; }
.faq-item:last-child { border-bottom: none; }
.faq-item h3 { font-size: 1.08rem; margin-bottom: 0.4em; }
.faq-item p { margin-bottom: 0; }

/* ---------- Footer ---------- */
footer.site {
  background: var(--ink);
  color: #C9BFCF;
  padding: 56px 0 30px;
}
footer.site a { color: var(--rose); text-decoration: none; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 700px) { .footer-grid { grid-template-columns: 1fr; gap: 28px; } }
.footer-grid h4 {
  color: var(--ivory);
  font-family: var(--font-label);
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}
.footer-grid p, .footer-grid li { font-size: 0.92rem; color: #C9BFCF; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 8px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 22px;
  font-size: 0.8rem;
  color: #8A8074;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.disclaimer-badge {
  display: inline-block;
  background: rgba(198,180,227,0.16);
  border: 1px solid rgba(198,180,227,0.4);
  color: var(--rose);
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-family: var(--font-label);
  letter-spacing: 0.03em;
}

/* ---------- Article page ---------- */
.article-hero {
  padding: 52px 0 20px;
}
.article-hero .eyebrow { margin-bottom: 14px; }
.breadcrumb {
  font-size: 0.82rem;
  color: var(--taupe);
  margin-bottom: 24px;
}
.breadcrumb a { text-decoration: none; color: var(--taupe); }
.breadcrumb a:hover { color: var(--rose-deep); }
.article-meta {
  font-family: var(--font-label);
  font-size: 0.82rem;
  color: var(--taupe);
  margin-bottom: 28px;
}
.article-body { max-width: 760px; margin: 0 auto; }
.article-body h2 { margin-top: 1.6em; }
.article-body ul, .article-body ol { color: var(--ink-soft); padding-left: 1.2em; }
.article-body li { margin-bottom: 0.5em; }
.pull-note {
  background: var(--white);
  border-left: 3px solid var(--rose-deep);
  padding: 20px 24px;
  margin: 32px 0;
  border-radius: var(--radius);
}
.pull-note p:last-child { margin-bottom: 0; }
.inline-cta {
  background: var(--ink);
  color: var(--ivory);
  padding: 34px;
  border-radius: var(--radius);
  text-align: center;
  margin: 44px 0;
}
.inline-cta h3 { color: var(--ivory); }
.inline-cta p { color: #C9BFCF; }

/* ---------- Utility ---------- */
.center { text-align: center; }
.mt-0 { margin-top: 0; }
