/* ==========================================================================
   Lola Nails Studio — design tokens
   Palette inspirée d'un plateau de vernis : bordeaux profond, nude rosé,
   ivoire chaud. Signature : rangée de "swatches" ronds (les touches de
   vernis) réutilisée comme puce, divider et motif de fond.
   ========================================================================== */

:root {
  --bg: #FDFBF8;
  --bg-warm: #F5EFE6;
  --ink: #3A322A;
  --ink-soft: #8A7F74;
  --accent: #A07850;
  --accent-dark: #7D5E3A;
  --nude: #D4AE94;
  --line: #EBE4DA;
  --white: #FFFFFF;

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Work Sans", -apple-system, Helvetica, Arial, sans-serif;

  --radius: 18px;
  --radius-sm: 10px;
  --radius-pill: 50px;
  --shadow-soft: 0 4px 24px rgba(140, 106, 77, 0.10);
  --container: 1120px;
}

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

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

h1 { font-size: clamp(2.6rem, 5vw, 4.2rem); font-optical-sizing: auto; }
h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); }
h3 { font-size: 1.25rem; }

.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cg stroke='%238C6A4D' stroke-width='1.1' stroke-linecap='round'%3E%3Cline x1='10' y1='1.5' x2='10' y2='4.5'/%3E%3Cline x1='15.1' y1='3.5' x2='13.3' y2='5.8'/%3E%3Cline x1='18.5' y1='8' x2='15.7' y2='9'/%3E%3Cline x1='18.5' y1='12' x2='15.7' y2='11'/%3E%3Cline x1='15.1' y1='16.5' x2='13.3' y2='14.2'/%3E%3Cline x1='10' y1='18.5' x2='10' y2='15.5'/%3E%3Cline x1='4.9' y1='16.5' x2='6.7' y2='14.2'/%3E%3Cline x1='1.5' y1='12' x2='4.3' y2='11'/%3E%3Cline x1='1.5' y1='8' x2='4.3' y2='9'/%3E%3Cline x1='4.9' y1='3.5' x2='6.7' y2='5.8'/%3E%3C/g%3E%3Ccircle cx='10' cy='10' r='2.5' fill='%238C6A4D'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  flex-shrink: 0;
}

/* --- swatch motif : rangée de ronds façon nuancier de vernis --- */
.swatches {
  display: flex;
  gap: 8px;
  align-items: center;
  margin: 18px 0;
}
.swatches span {
  width: 10px; height: 10px; border-radius: 50%;
  display: inline-block;
}
.swatches span:nth-child(1) { background: var(--accent); }
.swatches span:nth-child(2) { background: var(--nude); }
.swatches span:nth-child(3) { background: var(--bg-warm); border: 1px solid var(--line); }

/* --- header / nav --- */
header.site {
  position: sticky; top: 0; z-index: 50;
  background: rgba(253, 251, 248, 0.94);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 32px;
  max-width: var(--container);
  margin: 0 auto;
}
.logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 6px;
}
.logo em { font-style: normal; color: var(--accent); }
.logo-sun {
  width: 32px;
  height: auto;
  color: var(--accent);
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  padding: 0; margin: 0;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
}
.nav-links a {
  position: relative;
  padding-bottom: 4px;
}
.nav-links a.active,
.nav-links a:hover { color: var(--accent); }
.nav-links a.active::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--accent);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: var(--accent);
  color: var(--white) !important;
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  letter-spacing: 0.03em;
  font-weight: 600;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(140, 106, 77, 0.18);
}
.btn:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(140, 106, 77, 0.25); }
.btn.ghost {
  background: transparent;
  color: var(--ink) !important;
  border: 1.5px solid var(--line);
  box-shadow: none;
}
.btn.ghost:hover { border-color: var(--accent); color: var(--accent) !important; box-shadow: none; }

.nav-cta { display: none; }
@media (min-width: 760px) { .nav-cta { display: inline-flex; } }

.burger {
  display: inline-flex;
  background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 6px;
}
.burger span { width: 22px; height: 2px; background: var(--ink); }
@media (min-width: 760px) { .burger { display: none; } }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 18px;
  padding: 8px 32px 28px;
  border-top: 1px solid var(--line);
  font-size: 1.05rem;
}
.mobile-menu.open { display: flex; }
@media (min-width: 760px) {
  .nav-links { display: flex !important; }
  .mobile-menu { display: none !important; }
}
@media (max-width: 759px) { .nav-links { display: none; } }

/* --- hero --- */
.hero {
  padding: 60px 0 40px;
  position: relative;
}
.hero .wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 860px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .hero { padding: 40px 0 56px; }
}
.hero p.lead {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 46ch;
  margin: 22px 0 32px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-frame {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 2/3;
  box-shadow: var(--shadow-soft);
}
.hero-frame img,
.hero-frame video { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.hero-frame::after {
  content: "";
  position: absolute; inset: 0;
  border: 1px solid rgba(255,255,255,0.35);
  pointer-events: none;
}

/* --- sections --- */
section { padding: 56px 0; }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.divider {
  height: 1px;
  border: none;
  margin: 0;
  position: relative;
  overflow: visible;
  background: linear-gradient(to right, transparent, var(--line) 15%, var(--line) 85%, transparent);
}
.divider::after {
  content: "✦";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 10px;
  line-height: 1;
  color: var(--nude);
  background: var(--bg);
  padding: 0 10px;
}

/* --- service cards --- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 860px) { .grid-3 { grid-template-columns: 1fr; } }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 36px rgba(140, 106, 77, 0.14);
}
.card img { aspect-ratio: 5/6; object-fit: cover; object-position: center top; }
.card-body { padding: 22px 22px 26px; }
.card-body a { color: var(--accent); font-size: 0.9rem; font-weight: 600; }
.card-body a:hover { text-decoration: underline; }

/* --- pourquoi me choisir / features --- */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media (max-width: 860px) { .features { grid-template-columns: 1fr; } }
.features .num {
  font-family: var(--font-display);
  color: var(--nude);
  font-size: 2rem;
  margin-bottom: 8px;
  display: block;
}

/* --- band (histoire, tinted) --- */
.band {
  background: var(--bg-warm);
}
.band .wrap.two-col {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 860px) { .band .wrap.two-col { grid-template-columns: 1fr; } }

/* --- testimonials --- */
.testi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
@media (max-width: 760px) { .testi-grid { grid-template-columns: 1fr; } }
.testi {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.testi p { font-size: 1.02rem; color: var(--ink); }
.testi .who {
  margin-top: 16px;
  font-family: var(--font-display);
  color: var(--accent);
}

/* --- final cta band --- */
.cta-band {
  background: var(--ink);
  color: var(--bg);
  text-align: center;
  padding: 64px 0;
}
.cta-band h2 { color: var(--white); }
.cta-band p { color: #C9BFB4; max-width: 50ch; margin: 16px auto 32px; }

/* --- instagram --- */
.instagram-section { background: var(--bg); padding-top: 32px; }
.instagram-section h2 {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}

/* --- footer --- */
footer.site {
  padding: 40px 0;
  border-top: 1px solid var(--line);
  font-size: 0.85rem;
  color: var(--ink-soft);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.socials { display: flex; gap: 18px; }

/* --- floating whatsapp --- */
.floating-wa {
  position: fixed;
  right: 24px; bottom: 24px;
  z-index: 60;
  width: 52px; height: 52px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.floating-wa:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.45);
}

/* --- services grid (prestations) --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 860px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 36px rgba(140, 106, 77, 0.14);
}
.service-card-img {
  aspect-ratio: 3/4;
  overflow: hidden;
}
.service-card-img img { width: 100%; height: 100%; object-fit: cover; object-position: center center; }

.service-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  gap: 20px;
}
.service-duration {
  font-size: 0.78rem;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}
.service-desc {
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin-top: 10px;
  line-height: 1.55;
}
.service-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.service-price {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--accent);
  font-weight: 600;
  line-height: 1;
}
.service-price--devis {
  font-size: 1.1rem;
}

/* --- price board (style story) --- */
.price-section { background: var(--bg-warm); }
.price-board {
  max-width: 540px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.price-board-label {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  color: var(--ink-soft);
  margin: 0;
}
.price-board-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
  margin: -16px 0 0;
}
.price-group {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  font-size: 1rem;
  gap: 16px;
}
.price-row:first-child { border-top: 1px solid var(--line); }
.price-row span:last-child {
  font-family: var(--font-display);
  color: var(--accent);
  font-size: 1.05rem;
  white-space: nowrap;
  font-weight: 500;
}

/* --- pricing list (prestations) --- */
.service-block {
  display: grid;
  grid-template-columns: 90px 1fr 320px;
  gap: 40px;
  align-items: center;
  padding: 48px 0;
}
.service-block:not(:last-of-type) { border-bottom: 1px solid var(--line); }
@media (max-width: 860px) {
  .service-block { grid-template-columns: 1fr; gap: 20px; }
  .service-block .idx { order: -1; }
}
.service-block .idx {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--nude);
}
.service-block .price {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--accent);
  margin-top: 14px;
  display: block;
}
.service-block .photo {
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.service-block .photo img { width: 100%; height: 100%; object-fit: cover; }

.extras {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
@media (max-width: 760px) { .extras { grid-template-columns: repeat(2, 1fr); } }
.extra {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 22px 18px;
  text-align: center;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.extra .price { font-family: var(--font-display); color: var(--accent); font-size: 1.15rem; margin-top: 6px; display: block; }

/* --- rendez-vous steps --- */
.steps { display: flex; flex-direction: column; gap: 0; }
.step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.step .idx { font-family: var(--font-display); font-size: 0.85rem; color: var(--nude); flex-shrink: 0; padding-top: 2px; }
.step-text { font-size: 0.9rem; color: var(--ink-soft); margin: 0; }

/* --- rdv socials --- */
.rdv-socials {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.rdv-social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
  transition: color 0.2s ease;
}
.rdv-social-link:hover { color: var(--accent); }

.studio-photo {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow-soft);
}
.studio-photo img { width: 100%; height: 100%; object-fit: cover; }

/* --- studio page layout --- */
.studio-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 680px) {
  .studio-split { grid-template-columns: 1fr; gap: 32px; }
}
.studio-split-img {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1/1;
  box-shadow: var(--shadow-soft);
}
.studio-split-img img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }

.studio-text { display: flex; flex-direction: column; gap: 16px; }
.studio-text h2 { margin-top: 4px; }
.studio-text p { color: var(--ink-soft); margin: 0; }
.studio-credit { font-size: 0.88rem; color: var(--ink-soft); }
.studio-credit a { color: var(--accent); font-weight: 600; }
.studio-credit a:hover { text-decoration: underline; }
