/* ================================================================
   JAYA BROWS — Luxury Beauty Homepage
   Palette: nude beige, gold, soft pink, cream
   ================================================================ */

:root {
  /* Couleurs */
  --cream: #faf6f1;
  --cream-2: #f3ece2;
  --beige: #e8dcc8;
  --beige-deep: #d4c4a8;
  --nude: #e6cfb8;
  --rose: #f5d4cc;
  --rose-deep: #e8b8ad;
  --gold: #c9a876;
  --gold-deep: #a78754;
  --gold-light: #e6d2a8;
  --ink: #2d241c;
  --ink-soft: #5a4d40;
  --muted: #8a7a68;
  --line: rgba(45, 36, 28, 0.1);
  --line-strong: rgba(45, 36, 28, 0.2);

  /* Typo */
  --serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --sans: 'Inter', system-ui, sans-serif;

  /* Effets */
  --shadow-sm: 0 2px 12px rgba(45, 36, 28, 0.06);
  --shadow: 0 12px 40px rgba(45, 36, 28, 0.1);
  --shadow-lg: 0 20px 60px rgba(45, 36, 28, 0.12);
  --shadow-gold: 0 12px 32px rgba(201, 168, 118, 0.3);
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 32px;
  --easing: cubic-bezier(0.22, 1, 0.36, 1);

  --container: 1240px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 15% 10%, rgba(245, 212, 204, 0.4), transparent 50%),
    radial-gradient(circle at 85% 90%, rgba(201, 168, 118, 0.15), transparent 60%);
  pointer-events: none;
  z-index: -1;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font-family: inherit; }
em { font-style: italic; font-family: var(--serif); font-weight: 400; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 32px; }
@media (max-width: 768px) { .container { padding: 0 20px; } }

/* ================================================================
   TOP BAR
   ================================================================ */
.topbar {
  background: var(--ink);
  color: var(--cream);
  font-size: 13px;
  padding: 10px 20px;
  text-align: center;
  letter-spacing: 0.02em;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.topbar a {
  color: var(--gold-light);
  font-weight: 500;
  transition: color 0.2s ease;
}
.topbar a:hover { color: var(--cream); }
.topbar-sep { opacity: 0.4; }

/* ================================================================
   NAV
   ================================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 241, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  transition: all 0.3s ease;
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: 0.08em;
}
.logo-img { height: 42px; width: auto; display: block; }
.logo-mark {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-family: var(--serif);
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--easing);
}
.logo:hover .logo-mark { transform: rotate(-12deg) scale(1.05); }
.logo-text { color: var(--ink); }
.logo-thin { font-weight: 300; color: var(--muted); }

.nav-links { display: flex; gap: 4px; }
.nav-links a {
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  border-radius: 100px;
  transition: all 0.25s ease;
}
.nav-links a:hover { color: var(--ink); background: var(--cream-2); }

.nav-cta {
  padding: 12px 24px;
  background: var(--ink);
  color: var(--cream);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--gold-deep);
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}

.nav-burger { display: none; flex-direction: column; gap: 5px; padding: 10px; }
.nav-burger span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: all 0.3s ease; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
}

/* ================================================================
   BUTTONS
   ================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.4s var(--easing);
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--ink);
  color: var(--cream);
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-deep), var(--gold));
  opacity: 0;
  transition: opacity 0.4s ease;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary > * { position: relative; z-index: 1; }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-strong);
}
.btn-ghost:hover {
  background: var(--cream-2);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn-outline:hover {
  background: var(--ink);
  color: var(--cream);
}

.btn-block { width: 100%; padding: 18px; }

/* ================================================================
   HERO
   ================================================================ */
.hero {
  position: relative;
  padding: 80px 32px 100px;
  overflow: hidden;
}
.hero-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-text { animation: fadeUp 1s var(--easing) both; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 0 var(--gold);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(201, 168, 118, 0.6); }
  70% { box-shadow: 0 0 0 12px rgba(201, 168, 118, 0); }
  100% { box-shadow: 0 0 0 0 rgba(201, 168, 118, 0); }
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 28px;
}
.hero-title em {
  background: linear-gradient(135deg, var(--gold-deep) 30%, var(--gold) 70%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 400;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 480px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.meta-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.meta-item strong {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1;
}
.meta-item span {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.4;
}
.meta-divider {
  width: 1px;
  height: 32px;
  background: var(--line);
}

/* HERO VISUAL */
.hero-visual {
  position: relative;
  height: 600px;
  animation: fadeUp 1s var(--easing) 0.2s both;
}
.hero-img-main {
  position: absolute;
  top: 0; right: 0;
  width: 75%; height: 80%;
  border-radius: 220px 220px 24px 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-img-main img { width: 100%; height: 100%; object-fit: cover; }

.hero-img-deco {
  position: absolute;
  bottom: 0; left: 0;
  width: 45%; height: 45%;
  border-radius: 24px 24px 24px 200px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 6px solid var(--cream);
}
.hero-img-deco img { width: 100%; height: 100%; object-fit: cover; }

.hero-floater {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 14px 22px;
  box-shadow: var(--shadow);
  animation: floatUp 4s ease-in-out infinite alternate;
}
.hero-floater-1 {
  top: 20%;
  left: -20px;
  animation-delay: 0s;
}
.hero-floater-2 {
  bottom: 25%;
  right: -20px;
  animation-delay: -2s;
}
.floater-icon {
  width: 32px; height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: var(--cream);
  border-radius: 50%;
  font-size: 16px;
}
.hero-floater strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
}
.hero-floater small {
  font-size: 11px;
  color: var(--muted);
}

@keyframes floatUp {
  to { transform: translateY(-12px); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .hero-visual { height: 500px; max-width: 520px; margin: 0 auto; width: 100%; }
}
@media (max-width: 600px) {
  .hero { padding: 50px 20px 70px; }
  .hero-meta { flex-wrap: wrap; gap: 20px; }
  .meta-divider { display: none; }
  .hero-visual { height: 420px; }
  .hero-floater { padding: 10px 16px; font-size: 12px; }
}

/* ================================================================
   VALUES MARQUEE
   ================================================================ */
.values-marquee {
  background: var(--ink);
  color: var(--cream);
  padding: 28px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.values-marquee .marquee-track {
  display: flex;
  gap: 60px;
  align-items: center;
  width: max-content;
  animation: marquee 35s linear infinite;
  font-family: var(--serif);
  font-size: 1.5rem;
  letter-spacing: 0.15em;
  font-weight: 400;
}
.values-marquee .marquee-track span:nth-child(even) { color: var(--gold); }
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ================================================================
   SECTION COMMUN
   ================================================================ */
section { padding: 120px 0; position: relative; }
@media (max-width: 768px) { section { padding: 80px 0; } }

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 80px;
}
.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  color: var(--gold-deep);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 20px;
}
.section-title em {
  background: linear-gradient(135deg, var(--gold-deep), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 580px;
  margin: 0 auto;
}

/* ================================================================
   SERVICES
   ================================================================ */
.services { background: var(--cream); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card {
  position: relative;
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px 36px;
  transition: all 0.5s var(--easing);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(201, 168, 118, 0.1));
  opacity: 0;
  transition: opacity 0.5s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.service-card:hover::before { opacity: 1; }

.service-featured {
  background: linear-gradient(180deg, var(--rose) 0%, var(--cream-2) 100%);
  border-color: var(--rose-deep);
}
.service-pop {
  background: linear-gradient(180deg, var(--gold-light) 0%, var(--cream-2) 100%);
  border-color: var(--gold);
}

.service-tag {
  position: absolute;
  top: 28px; right: 28px;
  padding: 6px 14px;
  background: var(--ink);
  color: var(--cream);
  border-radius: 100px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}
.service-pop .service-tag { background: var(--gold-deep); }

.service-icon {
  font-size: 40px;
  color: var(--gold-deep);
  margin-bottom: 20px;
  font-family: var(--serif);
}

.service-card h3 {
  font-family: var(--serif);
  font-size: 1.85rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
  color: var(--ink);
}
.service-desc {
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.service-includes {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 32px;
  flex: 1;
}
.service-includes li {
  font-size: 0.9rem;
  color: var(--ink-soft);
  padding-left: 22px;
  position: relative;
}
.service-includes li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold-deep);
  font-size: 12px;
  top: 1px;
}

.service-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  position: relative;
}
.service-price span {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 2px;
}
.service-price strong {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1;
}
.service-cta {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  padding: 10px 18px;
  border-radius: 100px;
  background: var(--cream);
  border: 1px solid var(--line-strong);
  transition: all 0.3s ease;
}
.service-cta:hover {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
  transform: translateX(3px);
}

@media (max-width: 800px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ================================================================
   BEFORE / AFTER
   ================================================================ */
.ba { background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%); }
.ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.ba-text .section-tag,
.ba-text .section-title { text-align: left; }
.ba-text .section-title { margin-bottom: 24px; }
.ba-text > p {
  color: var(--ink-soft);
  margin-bottom: 32px;
  font-size: 1rem;
}

.ba-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}
.ba-points li {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.ba-points span {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--gold-deep);
  flex-shrink: 0;
  width: 40px;
}
.ba-points strong {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}
.ba-points p {
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.ba-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}
.ba-visual img { width: 100%; height: 100%; object-fit: cover; }
.ba-tag {
  position: absolute;
  padding: 8px 18px;
  background: rgba(250, 246, 241, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 100px;
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.05em;
}
.ba-tag-before { top: 24px; left: 24px; }
.ba-tag-after { bottom: 24px; right: 24px; background: var(--ink); color: var(--cream); }

@media (max-width: 900px) {
  .ba-grid { grid-template-columns: 1fr; gap: 48px; }
  .ba-visual { max-width: 480px; margin: 0 auto; }
}

/* ================================================================
   ABOUT
   ================================================================ */
.about { background: var(--cream); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.about-visual {
  position: relative;
  aspect-ratio: 4/5;
}
.about-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
}
.about-deco {
  position: absolute;
  bottom: -30px; right: -30px;
  width: 60%; height: 60%;
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  z-index: 0;
}

.about-text .section-tag,
.about-text .section-title { text-align: left; }
.about-text .section-title { margin-bottom: 28px; }
.about-lead {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--ink);
  margin-bottom: 20px;
  line-height: 1.4;
}
.about-text > p {
  color: var(--ink-soft);
  margin-bottom: 18px;
}

.about-signature {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 16px;
}
.about-signature::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
}
.about-signature strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--ink);
}
.about-signature span {
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 56px; }
  .about-visual { max-width: 460px; margin: 0 auto; }
}

/* ================================================================
   GALLERY
   ================================================================ */
.gallery { background: linear-gradient(180deg, var(--cream-2) 0%, var(--cream) 100%); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 16px;
  margin-bottom: 56px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: all 0.5s var(--easing);
  position: relative;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--easing);
}
.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-tall { grid-row: span 2; }
.gallery-wide { grid-column: span 2; }

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(45, 36, 28, 0.3), transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.gallery-item:hover::after { opacity: 1; }

.gallery-cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
}
.gallery-cta p {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--ink-soft);
  font-style: italic;
}

@media (max-width: 800px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .gallery-tall { grid-row: span 1; }
  .gallery-wide { grid-column: span 2; }
}

/* ================================================================
   PROCESS
   ================================================================ */
.process { background: var(--cream); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 8%; right: 8%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.step {
  text-align: center;
  padding: 0 12px;
  position: relative;
}
.step-num {
  width: 72px; height: 72px;
  margin: 0 auto 24px;
  background: var(--cream);
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--gold-deep);
  position: relative;
  z-index: 1;
  transition: all 0.4s ease;
}
.step:hover .step-num {
  background: var(--gold);
  color: var(--cream);
  transform: scale(1.08);
  box-shadow: var(--shadow-gold);
}
.step h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--ink);
}
.step p {
  color: var(--ink-soft);
  font-size: 0.92rem;
}

@media (max-width: 800px) {
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-steps::before { display: none; }
}
@media (max-width: 480px) {
  .process-steps { grid-template-columns: 1fr; }
}

/* ================================================================
   TESTIMONIALS
   ================================================================ */
.testimonials { background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi {
  padding: 36px 32px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: all 0.5s var(--easing);
}
.testi:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--gold);
}
.testi-stars {
  color: var(--gold-deep);
  font-size: 1.05rem;
  letter-spacing: 3px;
  margin-bottom: 18px;
}
.testi p {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--ink);
  line-height: 1.55;
  margin-bottom: 28px;
}
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-weight: 500;
  color: var(--cream);
  font-size: 1.2rem;
}
.avatar-1 { background: linear-gradient(135deg, var(--rose-deep), var(--gold)); }
.avatar-2 { background: linear-gradient(135deg, var(--gold-deep), var(--ink-soft)); }
.avatar-3 { background: linear-gradient(135deg, var(--rose), var(--gold)); }
.testi-author strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
}
.testi-author span {
  font-size: 0.8rem;
  color: var(--muted);
}

@media (max-width: 900px) {
  .testi-grid { grid-template-columns: 1fr; }
}

/* ================================================================
   FAQ
   ================================================================ */
.faq { background: var(--cream); }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.faq-intro { position: sticky; top: 100px; }
.faq-intro .section-tag,
.faq-intro .section-title { text-align: left; }
.faq-intro .section-title { margin-bottom: 24px; }
.faq-intro p { color: var(--ink-soft); }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq-item:hover { border-color: var(--gold); }
.faq-item[open] {
  background: var(--cream);
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
}
.faq-item summary {
  list-style: none;
  padding: 22px 28px;
  font-weight: 500;
  font-size: 1rem;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
  font-family: var(--serif);
  font-size: 1.2rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--gold-deep);
  font-weight: 300;
  transition: transform 0.3s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  padding: 0 28px 24px;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

@media (max-width: 900px) {
  .faq-grid { grid-template-columns: 1fr; gap: 48px; }
  .faq-intro { position: static; }
}

/* ================================================================
   BOOKING / CTA
   ================================================================ */
.booking { background: var(--cream); padding-bottom: 80px; }
.booking-card {
  position: relative;
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  box-shadow: var(--shadow-lg);
}
.booking-glow {
  position: absolute;
  top: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201, 168, 118, 0.4), transparent 60%);
  filter: blur(60px);
  pointer-events: none;
}
.booking-content {
  padding: 60px 56px;
  position: relative;
}
.booking-content .section-tag { text-align: left; }
.booking-content h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 16px;
}
.booking-content > p {
  color: var(--ink-soft);
  margin-bottom: 32px;
  max-width: 460px;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.booking-form input,
.booking-form select,
.booking-form textarea {
  padding: 16px 20px;
  background: var(--cream);
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  font-size: 14px;
  color: var(--ink);
  outline: none;
  transition: all 0.3s ease;
  font-family: inherit;
  width: 100%;
}
.booking-form input::placeholder,
.booking-form textarea::placeholder { color: var(--muted); }
.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: var(--gold);
  background: var(--cream);
  box-shadow: 0 0 0 3px rgba(201, 168, 118, 0.15);
}
.booking-form textarea { resize: vertical; min-height: 80px; }

.hp-field {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.booking-side {
  position: relative;
  overflow: hidden;
}
.booking-side img {
  width: 100%; height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.booking-side-overlay {
  position: relative;
  z-index: 1;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(45, 36, 28, 0.65), rgba(45, 36, 28, 0.2));
  padding: 60px 40px;
  display: flex;
  align-items: flex-end;
}
.booking-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: var(--cream);
}
.info-line {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  padding: 12px 18px;
  background: rgba(250, 246, 241, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(250, 246, 241, 0.25);
  border-radius: 100px;
  width: fit-content;
}
.info-line span { font-size: 16px; }

@media (max-width: 900px) {
  .booking-card { grid-template-columns: 1fr; }
  .booking-side { min-height: 280px; }
  .booking-content { padding: 48px 32px; }
}
@media (max-width: 500px) {
  .form-row { grid-template-columns: 1fr; }
}

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  background: var(--ink);
  color: var(--cream);
  padding: 80px 0 40px;
}
.footer .logo-text { color: var(--cream); }
.footer .logo-thin { color: var(--gold-light); }
.footer .logo-mark { background: linear-gradient(135deg, var(--gold), var(--gold-deep)); }

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand p {
  color: rgba(250, 246, 241, 0.6);
  font-size: 0.95rem;
  margin: 20px 0 24px;
  max-width: 280px;
}
.footer-social a {
  display: inline-block;
  padding: 10px 20px;
  background: rgba(250, 246, 241, 0.08);
  border: 1px solid rgba(250, 246, 241, 0.15);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}
.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 0.92rem;
  color: rgba(250, 246, 241, 0.7);
  transition: color 0.25s ease;
}
.footer-col a:hover { color: var(--gold-light); }

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(250, 246, 241, 0.1);
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(250, 246, 241, 0.5);
}
.footer-credits { font-style: italic; }

@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; }
}
@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ================================================================
   CHATBOT — Beauty Style
   ================================================================ */
/* ================================================================
   CHATBOT — Mobile-first complet
   ================================================================ */

/* Bouton flottant */
.chatbot {
  position: fixed;
  bottom: 20px;
  right: 16px;
  z-index: 1000;
}
.chatbot-toggle {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(201, 168, 118, 0.55);
  transition: all 0.35s var(--easing);
  position: relative;
  -webkit-tap-highlight-color: transparent;
}
.chatbot-toggle:hover,
.chatbot-toggle:focus { transform: scale(1.07); box-shadow: 0 12px 36px rgba(201, 168, 118, 0.7); }
.chatbot.open .chatbot-toggle { transform: rotate(90deg); }

.chat-close { display: none; }
.chatbot.open .chat-open  { display: none; }
.chatbot.open .chat-close { display: block; }

.chatbot-pulse {
  position: absolute; inset: 0;
  border-radius: 50%;
  background: var(--gold);
  z-index: -1;
  animation: chatPulse 2.4s infinite;
}
@keyframes chatPulse {
  0%   { transform: scale(1);   opacity: 0.5; }
  100% { transform: scale(1.7); opacity: 0;   }
}

/* Fenêtre — desktop */
.chatbot-window {
  position: fixed;
  bottom: 88px;
  right: 16px;
  width: 390px;
  height: 88vh;
  max-height: 680px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  transform: translateY(16px) scale(0.97);
  pointer-events: none;
  transition: opacity 0.35s var(--easing), transform 0.35s var(--easing);
  box-shadow: 0 24px 72px rgba(45, 36, 28, 0.22);
  z-index: 999;
}
.chatbot.open .chatbot-window {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

/* Mobile : plein écran */
@media (max-width: 520px) {
  .chatbot { bottom: 16px; right: 16px; }
  .chatbot-window {
    position: fixed;
    inset: 0;
    bottom: 0; right: 0; left: 0; top: 0;
    width: 100%;
    height: 100%;
    max-height: 100%;
    border-radius: 0;
    border: none;
    transform: translateY(100%);
    transition: transform 0.38s var(--easing), opacity 0.2s ease;
    opacity: 1;
  }
  .chatbot.open .chatbot-window {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Header */
.chatbot-header {
  padding: 14px 16px;
  background: linear-gradient(135deg, var(--gold-light), var(--rose));
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}
.chatbot-header-info { display: flex; align-items: center; gap: 12px; }
.chatbot-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--serif);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}
.online-dot {
  position: absolute; bottom: 0; right: 0;
  width: 11px; height: 11px;
  background: #4caf50;
  border: 2px solid var(--cream-2);
  border-radius: 50%;
  box-shadow: 0 0 6px #4caf50;
}
.chatbot-header strong { display: block; font-size: 14px; font-weight: 600; color: var(--ink); }
.chatbot-header span   { font-size: 11px; color: var(--ink-soft); }
.chatbot-clear {
  width: 34px; height: 34px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-soft);
  transition: all 0.2s ease;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
}
.chatbot-clear:hover { background: rgba(45,36,28,.1); color: var(--ink); }

/* Messages */
.chatbot-messages {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--cream);
  scrollbar-width: thin;
  scrollbar-color: var(--line-strong) transparent;
  overscroll-behavior: contain;
}
.chatbot-messages::-webkit-scrollbar { width: 4px; }
.chatbot-messages::-webkit-scrollbar-thumb { background: var(--line-strong); border-radius: 2px; }

.msg { display: flex; animation: msgIn 0.35s var(--easing); }
@keyframes msgIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.msg-bot  { justify-content: flex-start; }
.msg-user { justify-content: flex-end; }

.msg-bubble {
  max-width: 82%;
  padding: 11px 14px;
  border-radius: 18px;
  font-size: 13.5px;
  line-height: 1.55;
  word-break: break-word;
}
.msg-bot  .msg-bubble { background: var(--cream-2); border: 1px solid var(--line); color: var(--ink); border-bottom-left-radius: 5px; }
.msg-user .msg-bubble { background: var(--ink); color: var(--cream); border-bottom-right-radius: 5px; }
.msg-typing .msg-bubble { display: flex; gap: 4px; padding: 14px 16px; }
.msg-typing .msg-bubble span {
  width: 7px; height: 7px;
  background: var(--ink-soft); border-radius: 50%;
  animation: typing 1.4s infinite;
}
.msg-typing .msg-bubble span:nth-child(2) { animation-delay: 0.2s; }
.msg-typing .msg-bubble span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing {
  0%,60%,100% { transform: translateY(0); opacity: 0.4; }
  30%          { transform: translateY(-6px); opacity: 1; }
}

/* Suggestions */
.chatbot-suggestions {
  padding: 8px 12px 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  background: var(--cream);
  flex-shrink: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.chatbot-suggestions::-webkit-scrollbar { display: none; }
.suggestion {
  padding: 7px 13px;
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 12px;
  color: var(--ink-soft);
  transition: all 0.2s ease;
  white-space: nowrap;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
}
.suggestion:hover, .suggestion:active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--cream);
}

/* Input */
.chatbot-input {
  padding: 10px 12px;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 8px;
  align-items: center;
  background: var(--cream-2);
  flex-shrink: 0;
}
.chatbot-input input {
  flex: 1;
  padding: 11px 15px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 100px;
  color: var(--ink);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  min-width: 0;
}
.chatbot-input input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,118,.15);
}
.chatbot-input input::placeholder { color: var(--muted); }
.chatbot-input button {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s ease, transform 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}
.chatbot-input button:hover  { background: var(--gold-deep); transform: scale(1.06); }
.chatbot-input button:active { transform: scale(0.96); }
.chatbot-input button:disabled { opacity: 0.45; cursor: not-allowed; }

/* ================================================================
   CALENDRIER — wizard plein écran, overlay absolu dans .chatbot-window
   ================================================================ */
.chat-calendar {
  position: absolute;
  inset: 0;
  z-index: 20;
  display: flex;
  flex-direction: column;
  background: var(--cream);
  transform: translateY(100%);
  transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}
.chat-calendar.visible {
  transform: translateY(0);
  pointer-events: auto;
}

/* Sticky header du wizard */
.cal-wizard-header {
  flex-shrink: 0;
  padding: 14px 16px 10px;
  background: linear-gradient(135deg, var(--gold-light), var(--rose));
  border-bottom: 1px solid var(--line);
}

/* Indicateur d'étape */
.cal-step-indicator {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--muted);
  text-transform: uppercase;
}
.cal-step { transition: color 0.2s ease; }
.cal-step.active { color: var(--gold-deep); }
.cal-step-sep { color: var(--beige-deep); font-weight: 400; }

/* Scrollable body */
.cal-wizard-body {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  padding: 14px 14px 8px;
  scrollbar-width: thin;
  scrollbar-color: var(--line-strong) transparent;
}
.cal-wizard-body::-webkit-scrollbar { width: 3px; }
.cal-wizard-body::-webkit-scrollbar-thumb { background: var(--line-strong); border-radius: 2px; }

/* Sticky footer */
.cal-wizard-footer {
  flex-shrink: 0;
  padding: 10px 14px 12px;
  background: var(--cream);
  border-top: 1px solid var(--line);
}

/* Prestation sélectionnée — dans le wizard header */
.cal-presta-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-deep);
  text-align: center;
}

/* Nav mois */
.cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.cal-month-label {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
  text-transform: capitalize;
  letter-spacing: 0.04em;
}
.cal-nav {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--cream-2);
  border: 1px solid var(--line);
  font-size: 1.3rem;
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}
.cal-nav:hover, .cal-nav:active { background: var(--gold); border-color: var(--gold); color: var(--cream); }

/* En-têtes jours */
.cal-days-header {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-bottom: 4px;
}
.cal-days-header span {
  text-align: center;
  font-size: 10.5px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 3px 0;
}

/* Grille jours */
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  margin-bottom: 12px;
}
.cal-day {
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  color: var(--ink);
  transition: all 0.18s ease;
  border: 1.5px solid transparent;
  min-width: 0;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.cal-day:hover:not(.disabled):not(.past),
.cal-day:active:not(.disabled):not(.past) {
  background: var(--cream-2);
  border-color: var(--gold);
}
.cal-day.today  { border-color: var(--gold); color: var(--gold-deep); font-weight: 700; }
.cal-day.selected { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.cal-day.disabled,
.cal-day.past  { color: var(--beige-deep); cursor: default; pointer-events: none; }
.cal-day.empty { pointer-events: none; }
.cal-day.sunday { color: var(--rose-deep); }
.cal-day.sunday.past,
.cal-day.sunday.disabled { color: var(--beige-deep); }

/* Séparateur */
.cal-divider {
  height: 1px;
  background: var(--line);
  margin: 0 0 10px;
}

/* Créneaux */
.cal-slots { margin-bottom: 10px; }
.cal-slots-hint {
  font-size: 12px; color: var(--muted);
  text-align: center; font-style: italic; padding: 6px 0;
}
.cal-slots-label {
  font-size: 11px; font-weight: 600; color: var(--ink);
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.cal-slots-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}
@media (max-width: 360px) {
  .cal-slots-grid { grid-template-columns: repeat(3, 1fr); }
}
.cal-slot {
  padding: 9px 4px;
  background: var(--cream-2);
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  text-align: center;
  cursor: pointer;
  transition: all 0.18s ease;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.cal-slot:hover,
.cal-slot:active  { border-color: var(--gold); background: var(--gold-light); }
.cal-slot.selected { background: var(--ink); color: var(--cream); border-color: var(--ink); }

/* Boutons dans le footer sticky */
.cal-confirm {
  width: 100%;
  padding: 14px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 100px;
  margin-bottom: 6px;
}
.cal-cancel {
  width: 100%; padding: 6px;
  font-size: 12px; color: var(--muted);
  background: none; border: none; cursor: pointer;
  text-align: center; transition: color 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}
.cal-cancel:hover, .cal-cancel:active { color: var(--ink); }

/* Formulaire coordonnées (étape 3) */
.cal-contact-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 6px;
  animation: fadeInUp 0.28s var(--easing);
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.cal-contact-recap {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 12px;
  color: var(--ink-soft);
}
.cal-contact-recap span:first-child {
  font-weight: 600;
  color: var(--gold-deep);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.cal-contact-fields { display: flex; flex-direction: column; gap: 8px; }
.cal-field { display: flex; flex-direction: column; gap: 4px; }
.cal-field label {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.cal-field input {
  height: 44px;
  padding: 0 12px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: var(--cream-2);
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s ease;
  -webkit-appearance: none;
}
.cal-field input:focus { border-color: var(--gold); background: #fff; }
.cal-field input::placeholder { color: var(--beige-deep); }
.cal-submit {
  width: 100%;
  padding: 14px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 100px;
}

/* ================================================================
   CARTE RDV CONFIRMÉ
   ================================================================ */
.msg-rdv-card {
  background: linear-gradient(135deg, var(--gold-light), var(--rose));
  border: 1px solid var(--gold);
  border-radius: 16px;
  padding: 16px 18px;
  max-width: 90%;
  display: flex;
  flex-direction: column;
  gap: 5px;
  animation: msgIn 0.4s var(--easing);
}
.rdv-icon { font-size: 1.3rem; color: var(--gold-deep); margin-bottom: 2px; }
.msg-rdv-card strong { font-size: 14px; font-weight: 600; color: var(--ink); font-family: var(--serif); }
.msg-rdv-card p { font-size: 12.5px; color: var(--ink-soft); margin: 0; }
.msg-rdv-card a {
  display: inline-block; margin-top: 6px;
  font-size: 12.5px; font-weight: 600;
  color: var(--gold-deep); text-decoration: underline; text-underline-offset: 3px;
}
.rdv-row { display: flex; flex-direction: column; margin: 3px 0; }
.rdv-label { font-size: 10px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); }
.rdv-value { font-size: 13px; font-weight: 600; color: var(--ink); text-transform: capitalize; }

/* ================================================================
   PICKER PRESTATION
   ================================================================ */
.msg-picker { max-width: 95% !important; }
.msg-picker p { margin-bottom: 10px; font-size: 13.5px; }
.picker-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; }
.picker-btn {
  display: flex; flex-direction: column; gap: 3px;
  padding: 10px 11px;
  background: var(--cream);
  border: 1.5px solid var(--line-strong);
  border-radius: 12px;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s ease;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.picker-btn:hover, .picker-btn:active { border-color: var(--gold); background: var(--gold-light); }
.picker-name  { font-size: 12px; font-weight: 600; color: var(--ink); line-height: 1.3; }
.picker-price { font-size: 11px; color: var(--gold-deep); font-weight: 500; }

/* ================================================================
   REVEAL ANIMATIONS
   ================================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s var(--easing), transform 0.9s var(--easing);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
