/* ═══════════════════════════════════════════════════════════════
   ENZO SANTA EVENTS — Design System
   White + Gold + Purple/Pink (wedding) · Elegant & Sober
═══════════════════════════════════════════════════════════════ */

:root {
  --white: #ffffff;
  --off-white: #fafafa;
  --cream: #f5f3f0;
  --gold: #C9A96E;
  --gold-light: #dfc89e;
  --gold-dark: #a8873e;
  --black: #0a0a0a;
  --dark: #1a1a1a;
  --gray-900: #2d2d2d;
  --gray-700: #555555;
  --gray-500: #888888;
  --gray-300: #cccccc;
  --gray-200: #e5e5e5;
  --gray-100: #f0f0f0;
  --purple: #8B5CF6;
  --purple-dark: #7c3aed;
  --pink: #EC4899;
  --pink-light: #f472b6;
  --mariage-gradient: linear-gradient(135deg, #8B5CF6 0%, #EC4899 100%);
  --font-body: 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-heading: Georgia, 'Times New Roman', 'Noto Serif', serif;
  --font-mono: 'SF Mono', 'Fira Code', monospace;
  --nav-h: 70px;
  --ease: cubic-bezier(.4, 0, .2, 1);
  --ease-out: cubic-bezier(0, 0, .2, 1);
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,.1);
  --shadow-lg: 0 10px 40px rgba(0,0,0,.15);
  --radius: 8px;
  --radius-lg: 16px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
body { font-family: var(--font-body); color: var(--gray-900); background: var(--white); line-height: 1.7; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; font-size: 1rem; }

/* ═══════════════════════ PRELOADER ═══════════════════════ */
#preloader {
  position: fixed; inset: 0; z-index: 10000; background: var(--black);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .8s var(--ease), visibility .8s;
}
#preloader.done { opacity: 0; visibility: hidden; pointer-events: none; }

.pl-inner { text-align: center; }
.pl-logo { position: relative; padding: 2rem 3rem; }

.pl-line {
  display: block; height: 1px; background: var(--gold);
  transform: scaleX(0); transition: transform 1.2s var(--ease-out);
}
.pl-line--top { margin-bottom: 1.5rem; transform-origin: left; }
.pl-line--bot { margin-top: 1.5rem; transform-origin: right; }
#preloader.active .pl-line { transform: scaleX(1); }

.pl-name {
  display: block; font-family: var(--font-heading); font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--white); letter-spacing: .3em; font-weight: 400;
  opacity: 0; transform: translateY(20px);
  transition: opacity .8s var(--ease) .3s, transform .8s var(--ease) .3s;
}
.pl-sub {
  display: block; font-size: clamp(.7rem, 2vw, 1rem); color: var(--gold);
  letter-spacing: .6em; margin-top: .5rem;
  opacity: 0; transform: translateY(10px);
  transition: opacity .8s var(--ease) .6s, transform .8s var(--ease) .6s;
}
#preloader.active .pl-name,
#preloader.active .pl-sub { opacity: 1; transform: translateY(0); }

.pl-bar {
  width: 200px; height: 1px; background: rgba(255,255,255,.15);
  margin: 2rem auto 0; overflow: hidden; border-radius: 1px;
}
.pl-bar-fill { height: 100%; width: 0; background: var(--gold); transition: width .3s linear; }

.pl-pct {
  display: block; margin-top: .8rem; font-size: .75rem;
  color: var(--gray-500); letter-spacing: .2em; font-variant-numeric: tabular-nums;
}

/* ═══════════════════════ NAVIGATION ═══════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(1.5rem, 4vw, 4rem); z-index: 1000;
  transition: background .4s, box-shadow .4s, backdrop-filter .4s;
}
.nav.scrolled {
  background: rgba(255,255,255,.92); backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(0,0,0,.06);
}
.nav.scrolled .nav-logo,
.nav.scrolled .nav-link { color: var(--dark); }
.nav.nav--dark .nav-logo,
.nav.nav--dark .nav-link { color: var(--dark); }

.nav-logo {
  font-family: var(--font-heading); font-size: 1.1rem; letter-spacing: .15em;
  color: var(--white); font-weight: 400; transition: color .3s;
}
.nav-logo span { color: var(--gold); font-weight: 400; }

.nav-links {
  display: flex; gap: 2rem; align-items: center;
}
.nav-link {
  font-size: .85rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--white); transition: color .3s; position: relative;
}
.nav-link::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--gold); transform: scaleX(0);
  transition: transform .3s var(--ease); transform-origin: right;
}
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); transform-origin: left; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px; width: 28px; padding: 4px 0;
}
.nav-toggle span {
  display: block; height: 1.5px; background: var(--white); transition: .3s var(--ease);
}
.nav.scrolled .nav-toggle span,
.nav.nav--dark .nav-toggle span { background: var(--dark); }
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -5px); }

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute; top: 0; left: 0; width: 100vw; height: 100vh; height: 100dvh;
    background: var(--white); z-index: 9999;
    flex-direction: column; justify-content: center; gap: 2rem;
    opacity: 0; visibility: hidden; transition: .4s var(--ease);
  }
  .nav-links.open { opacity: 1; visibility: visible; }
  .nav-links .nav-link { color: var(--dark); font-size: 1.2rem; }
  .nav-toggle { z-index: 10000; position: relative; }
}

/* ═══════════════════════ BUTTONS ═══════════════════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .9rem 2.5rem; font-size: .85rem; letter-spacing: .12em;
  text-transform: uppercase; border-radius: 0; transition: all .4s var(--ease);
  position: relative; overflow: hidden; min-width: 180px;
}
.btn--gold {
  background: var(--gold); color: var(--white);
}
.btn--gold:hover { background: var(--gold-dark); }
.btn--outline {
  background: transparent; color: var(--white);
  border: 1px solid rgba(255,255,255,.4);
}
.btn--outline:hover { border-color: var(--gold); color: var(--gold); }
.section .btn--outline { color: var(--dark); border-color: var(--gray-300); }
.section .btn--outline:hover { border-color: var(--gold); color: var(--gold); }
.btn--small { padding: .6rem 1.5rem; font-size: .75rem; min-width: auto; }
.btn--mariage { background: var(--purple); color: var(--white); }
.btn--mariage:hover { background: var(--purple-dark); }

/* ═══════════════════════ HERO ═══════════════════════ */
.hero {
  position: relative; min-height: 100vh; display: flex;
  align-items: center; justify-content: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1573676048035-9c2a72b6a12a?q=80&w=2071&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') center/cover;
}
.hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: none;
}
.hero-video.active { display: block; }
.hero-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,.7) 0%, rgba(10,10,10,.5) 50%, rgba(10,10,10,.8) 100%);
}
.hero-particles {
  position: absolute; inset: 0; overflow: hidden;
}
.hero-particle {
  position: absolute; width: 2px; height: 2px; background: var(--gold);
  border-radius: 50%; opacity: 0; animation: particleFloat 8s infinite;
}
@keyframes particleFloat {
  0% { opacity: 0; transform: translateY(100vh) scale(0); }
  20% { opacity: .6; }
  80% { opacity: .3; }
  100% { opacity: 0; transform: translateY(-20vh) scale(1); }
}

.hero-content {
  position: relative; z-index: 2; text-align: center;
  padding: 0 2rem; max-width: 900px;
}
.hero-eyebrow {
  font-size: .85rem; letter-spacing: .4em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.5rem;
}
.hero-title {
  font-family: var(--font-heading); font-weight: 400;
  font-size: clamp(3rem, 8vw, 6rem); line-height: 1.1; color: var(--white);
  margin-bottom: 1rem;
}
.hero-title span { display: block; }
.hero-title-accent { color: var(--gold); font-style: italic; }
.hero-tagline {
  font-size: clamp(1rem, 2vw, 1.3rem); color: rgba(255,255,255,.7);
  margin-bottom: 2.5rem; font-weight: 300;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 2;
}
.hero-scroll span {
  display: block; width: 24px; height: 40px; border: 1.5px solid rgba(255,255,255,.4);
  border-radius: 12px; position: relative;
}
.hero-scroll span::after {
  content: ''; position: absolute; top: 6px; left: 50%;
  width: 3px; height: 8px; background: var(--gold); border-radius: 2px;
  transform: translateX(-50%); animation: scrollBounce 2s infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  50% { transform: translateX(-50%) translateY(12px); opacity: .3; }
}

/* ═══════════════════════ REVIEWS BANNER ═══════════════════════ */
.reviews-banner {
  background: var(--black); padding: 1.5rem 0; overflow: hidden;
  position: relative;
}
.reviews-banner::before, .reviews-banner::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2;
  pointer-events: none;
}
.reviews-banner::before { left: 0; background: linear-gradient(90deg, var(--black), transparent); }
.reviews-banner::after { right: 0; background: linear-gradient(-90deg, var(--black), transparent); }

.reviews-track {
  display: flex; gap: 3rem; white-space: nowrap;
  animation: marquee 40s linear infinite;
}
.reviews-track:hover { animation-play-state: paused; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

.review-pill {
  display: inline-flex; align-items: center; gap: .8rem;
  padding: .6rem 1.5rem; border: 1px solid rgba(201,169,110,.2);
  border-radius: 100px; flex-shrink: 0;
}
.review-pill-stars { color: var(--gold); font-size: .8rem; letter-spacing: 2px; }
.review-pill-text { color: rgba(255,255,255,.8); font-size: .85rem; }
.review-pill-name { color: var(--gold); font-size: .75rem; font-weight: 600; }

/* ═══════════════════════ SECTIONS ═══════════════════════ */
.section { padding: clamp(4rem, 8vw, 8rem) 0; }
.section--dark { background: var(--cream); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 clamp(1.5rem, 4vw, 4rem); }

.eyebrow {
  display: block; font-size: .75rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: .8rem; font-weight: 500;
}
.section-title {
  font-family: var(--font-heading); font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 400; line-height: 1.2; margin-bottom: 1rem; color: var(--dark);
}
.section-sub { color: var(--gray-700); font-size: 1.05rem; margin-bottom: 2rem; max-width: 600px; }
.text-center { text-align: center; }

/* ═══════════════════════ ANIMATIONS ═══════════════════════ */
.anim-fade { opacity: 0; transform: translateY(20px); animation: fadeUp .8s var(--ease) forwards; animation-delay: var(--d, 0s); }
.anim-slide { opacity: 0; transform: translateY(40px); animation: fadeUp .8s var(--ease) forwards; animation-delay: var(--d, 0s); }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s var(--ease), transform .7s var(--ease); transition-delay: var(--d, 0s); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ═══════════════════════ SERVICES ═══════════════════════ */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem; margin-top: 3rem;
}
.service-card {
  padding: 2.5rem 2rem; border: 1px solid var(--gray-200);
  transition: all .4s var(--ease); position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: var(--gold); transform: scaleX(0);
  transition: transform .4s var(--ease); transform-origin: left;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { width: 48px; height: 48px; color: var(--gold); margin-bottom: 1.5rem; }
.service-card h3 {
  font-family: var(--font-heading); font-size: 1.2rem; font-weight: 400;
  margin-bottom: .8rem; color: var(--dark);
}
.service-card p { color: var(--gray-700); font-size: .9rem; line-height: 1.7; }

/* ═══════════════════════ PRODUCTS ═══════════════════════ */
.products-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem; margin-top: 2rem;
}
.product-card {
  background: var(--white); border: 1px solid var(--gray-200);
  overflow: hidden; transition: all .4s var(--ease); cursor: pointer;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.product-card-img {
  height: 220px; overflow: hidden; position: relative;
  background: var(--gray-100);
}
.product-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.product-card:hover .product-card-img img { transform: scale(1.05); }
.product-card-badge {
  position: absolute; top: 1rem; right: 1rem;
  background: var(--gold); color: var(--white); font-size: .7rem;
  padding: .3rem .8rem; letter-spacing: .1em; text-transform: uppercase;
}
.product-card-badge--vente { background: #16a34a; left: 1rem; right: auto; }
.product-card-body { padding: 1.5rem; }
.product-card-cat {
  font-size: .7rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--gold); margin-bottom: .5rem;
}
.product-card h3 {
  font-family: var(--font-heading); font-size: 1.15rem; font-weight: 400;
  margin-bottom: .5rem;
}
.product-card p { color: var(--gray-700); font-size: .85rem; margin-bottom: 1rem; }
.product-card-price {
  font-family: var(--font-heading); font-size: 1.4rem; color: var(--dark);
}
.product-card-price span { font-size: .8rem; color: var(--gray-500); font-family: var(--font-body); }
.product-card-weekend { font-size: .75rem; color: var(--gray-500); margin-top: .3rem; }
.product-card-caution { font-size: .7rem; color: var(--gold); margin-top: .2rem; font-weight: 500; }

/* ═══════════════════════ PRODUCT MODAL ═══════════════════════ */
.product-modal {
  position: fixed; inset: 0; z-index: 5000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: .3s var(--ease);
}
.product-modal.open { opacity: 1; visibility: visible; }
.product-modal-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.6); }
.product-modal-content {
  position: relative; background: var(--white); width: 90%; max-width: 700px;
  max-height: 90vh; overflow-y: auto; padding: 2.5rem;
  transform: translateY(20px); transition: transform .3s var(--ease);
}
.product-modal.open .product-modal-content { transform: translateY(0); }
.product-modal-close {
  position: absolute; top: 1rem; right: 1.5rem; font-size: 1.8rem;
  color: var(--gray-500); transition: color .3s;
}
.product-modal-close:hover { color: var(--dark); }

.pm-title { font-family: var(--font-heading); font-size: 1.6rem; font-weight: 400; margin-bottom: .5rem; }
.pm-price { font-family: var(--font-heading); font-size: 1.8rem; color: var(--gold); margin-bottom: 1.5rem; }
.pm-price .pm-weekend { font-size: .85rem; color: var(--gray-500); font-family: var(--font-body); display: block; }
.pm-desc { color: var(--gray-700); margin-bottom: 1.5rem; line-height: 1.8; }
.pm-includes { margin-bottom: 1.5rem; }
.pm-includes h4 { font-size: .8rem; letter-spacing: .15em; text-transform: uppercase; color: var(--gold); margin-bottom: .8rem; }
.pm-includes ul { list-style: none; }
.pm-includes li { padding: .4rem 0; padding-left: 1.5rem; position: relative; color: var(--gray-700); font-size: .9rem; }
.pm-includes li::before { content: '✦'; position: absolute; left: 0; color: var(--gold); font-size: .7rem; }

.pm-form { border-top: 1px solid var(--gray-200); padding-top: 1.5rem; margin-top: 1.5rem; }
.pm-form h4 { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 400; margin-bottom: 1rem; }
.pm-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.pm-form input, .pm-form select, .pm-form textarea {
  width: 100%; padding: .8rem 1rem; border: 1px solid var(--gray-200);
  font-size: .9rem; transition: border-color .3s; background: var(--white);
}
.pm-form input:focus, .pm-form select:focus, .pm-form textarea:focus {
  outline: none; border-color: var(--gold);
}
.pm-form label { font-size: .8rem; color: var(--gray-700); margin-bottom: .3rem; display: block; }

.pm-weekend-toggle {
  display: flex; align-items: center; gap: .8rem; margin: 1rem 0;
}
.pm-toggle {
  width: 44px; height: 24px; background: var(--gray-200); border-radius: 12px;
  position: relative; cursor: pointer; transition: background .3s;
}
.pm-toggle.active { background: var(--gold); }
.pm-toggle::after {
  content: ''; position: absolute; top: 2px; left: 2px;
  width: 20px; height: 20px; background: var(--white); border-radius: 50%;
  transition: transform .3s var(--ease); box-shadow: 0 1px 3px rgba(0,0,0,.2);
}
.pm-toggle.active::after { transform: translateX(20px); }
.pm-weekend-label { font-size: .85rem; color: var(--gray-700); }

.pm-promo { display: flex; gap: .5rem; margin: 1rem 0; }
.pm-promo input { flex: 1; }
.pm-promo button { padding: .8rem 1.2rem; background: var(--dark); color: var(--white); font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; }
.pm-promo-result { font-size: .85rem; margin: .5rem 0; }
.pm-promo-result.success { color: #22c55e; }
.pm-promo-result.error { color: #ef4444; }

.pm-total {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1rem 0; border-top: 1px solid var(--gray-200); margin-top: 1rem;
}
.pm-total-label { font-size: .9rem; color: var(--gray-700); }
.pm-total-amount { font-family: var(--font-heading); font-size: 1.6rem; color: var(--dark); }
.pm-total-discount { font-size: .8rem; color: #22c55e; text-decoration: line-through; }

@media (max-width: 500px) {
  .pm-form-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════ ABOUT ═══════════════════════ */
.about-grid {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: center;
}
.about-img { position: relative; }
.about-img img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.about-img::after {
  content: ''; position: absolute; top: 2rem; left: 2rem; right: -2rem; bottom: -2rem;
  border: 1px solid var(--gold); z-index: -1;
}
.about-text p { color: var(--gray-700); margin-bottom: 1.2rem; }
@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-img::after { display: none; }
}

/* ═══════════════════════ TESTIMONIALS ═══════════════════════ */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem; margin-top: 2rem;
}
.testimonial-card {
  background: var(--white); padding: 2rem; position: relative;
  border: 1px solid var(--gray-200);
}
.testimonial-card::before {
  content: '"'; position: absolute; top: 1rem; right: 1.5rem;
  font-family: var(--font-heading); font-size: 4rem; color: var(--gold); opacity: .2;
  line-height: 1;
}
.testimonial-stars { color: var(--gold); font-size: .9rem; letter-spacing: 3px; margin-bottom: 1rem; }
.testimonial-text { color: var(--gray-700); font-size: .9rem; line-height: 1.8; margin-bottom: 1.5rem; font-style: italic; }
.testimonial-author { font-weight: 600; color: var(--dark); font-size: .9rem; }
.testimonial-meta { font-size: .8rem; color: var(--gray-500); margin-top: .2rem; }

/* ═══════════════════════ CONTACT ═══════════════════════ */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.3fr; gap: 4rem; align-items: start;
}
.contact-details { margin-top: 1.5rem; }
.contact-item { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.contact-item svg { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; }
.contact-item a, .contact-item span { color: var(--gray-700); font-size: .95rem; }
.contact-item a:hover { color: var(--gold); }
.contact-socials { display: flex; gap: 1rem; margin-top: 1.5rem; }
.contact-socials a {
  width: 40px; height: 40px; border: 1px solid var(--gray-200);
  display: flex; align-items: center; justify-content: center;
  transition: all .3s var(--ease);
}
.contact-socials a:hover { border-color: var(--gold); color: var(--gold); }
.contact-socials svg { width: 18px; height: 18px; }

.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%; padding: 1rem; border: 1px solid var(--gray-200);
  margin-bottom: 1rem; font-size: .9rem; transition: border-color .3s;
  background: var(--white);
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: none; border-color: var(--gold);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-msg { margin-top: 1rem; font-size: .9rem; }
.form-msg.success { color: #22c55e; }
.form-msg.error { color: #ef4444; }

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
}

/* ═══════════════════════ FOOTER ═══════════════════════ */
.footer {
  background: var(--black); color: rgba(255,255,255,.6); padding: 4rem 0 2rem;
}
.footer-inner { }
.footer-brand { margin-bottom: 2rem; }
.footer-logo {
  font-family: var(--font-heading); font-size: 1.2rem; color: var(--white);
  letter-spacing: .15em; display: block; margin-bottom: .5rem;
}
.footer-logo span { color: var(--gold); }
.footer-brand p { font-size: .85rem; line-height: 1.6; }
.footer-links {
  display: flex; flex-wrap: wrap; gap: 1.5rem; margin-bottom: 2rem;
}
.footer-links a { font-size: .85rem; transition: color .3s; }
.footer-links a:hover { color: var(--gold); }
.footer-seo { display: flex; flex-wrap: wrap; gap: .5rem 1rem; margin-bottom: 1rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.06); }
.footer-seo a { font-size: .7rem; color: rgba(255,255,255,.3); transition: color .3s; }
.footer-seo a:hover { color: var(--gold); }
.footer-copy { font-size: .75rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.1); }

/* ═══════════════════════ PAGE HEROES ═══════════════════════ */
.page-hero {
  position: relative; height: 60vh; min-height: 400px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0; background: center/cover no-repeat;
}
.page-hero--mariage .page-hero-bg {
  background-image: url('https://images.unsplash.com/photo-1573676048035-9c2a72b6a12a?q=80&w=2071&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
}
.page-hero--mariage .page-hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(139,92,246,.7), rgba(236,72,153,.6));
}
.page-hero--shop .page-hero-bg {
  background-image: url('https://images.unsplash.com/photo-1533174072545-7a4b6ad7a6c3?w=1600&h=900&fit=crop');
}
.page-hero--shop .page-hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,.6), rgba(10,10,10,.7));
}
.page-hero--materiel .page-hero-bg {
  background-image: url('https://images.unsplash.com/photo-1470229722913-7c0e2dbbafd3?w=1600&h=900&fit=crop');
}
.page-hero--materiel .page-hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(10,10,10,.65);
}
.page-hero--integration .page-hero-bg {
  background-image: url('https://images.unsplash.com/photo-1514525253161-7a46d19cd819?w=1600&h=900&fit=crop');
}
.page-hero--integration .page-hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,.7), rgba(201,168,76,.4));
}
.section--integration-gradient {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #2a1f0e 100%);
}

.integration-events {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.integration-event-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(201,168,76,.15);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: transform .3s, border-color .3s;
}
.integration-event-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
}
.integration-event-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.integration-event-card h3 {
  color: var(--gold);
  margin-bottom: .5rem;
  font-size: 1.1rem;
}
.integration-event-card p {
  color: var(--gray-400);
  font-size: .9rem;
  line-height: 1.6;
}

.integration-staff-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}
.integration-staff-list li {
  padding: .75rem 0 .75rem 1.5rem;
  position: relative;
  border-bottom: 1px solid rgba(201,168,76,.15);
  line-height: 1.6;
}
.integration-staff-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.1rem;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
}
.integration-staff-list li strong {
  color: var(--gold);
}

.page-hero--bio .page-hero-bg {
  background-image: url('https://images.unsplash.com/photo-1571266028243-3716f02d2d58?w=1600&h=900&fit=crop');
}
.page-hero--bio .page-hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(10,10,10,.6);
}

.page-hero-content { position: relative; z-index: 2; text-align: center; padding: 0 2rem; }
.page-hero-title {
  font-family: var(--font-heading); font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 400; color: var(--white); margin-bottom: .5rem;
}
.page-hero-sub { color: rgba(255,255,255,.8); font-size: clamp(.95rem, 2vw, 1.2rem); max-width: 600px; margin: 0 auto; }

/* ═══════════════════════ MARIAGE PAGE ═══════════════════════ */
.mariage-intro {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 4rem; align-items: center;
}
.mariage-intro-text p { color: var(--gray-700); margin-bottom: 1.2rem; }
.mariage-intro-img img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
@media (max-width: 768px) { .mariage-intro { grid-template-columns: 1fr; gap: 2rem; } }

.section--mariage-gradient {
  background: var(--mariage-gradient); padding: clamp(4rem, 8vw, 8rem) 0;
}
.mariage-services {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem; margin-top: 2rem;
}
.mariage-service {
  background: rgba(255,255,255,.1); backdrop-filter: blur(10px);
  padding: 2rem; border: 1px solid rgba(255,255,255,.15); transition: .3s var(--ease);
}
.mariage-service:hover { background: rgba(255,255,255,.15); transform: translateY(-2px); }
.mariage-service-num {
  font-family: var(--font-heading); font-size: 2rem; color: rgba(255,255,255,.3);
  margin-bottom: .5rem;
}
.mariage-service h3 { color: var(--white); font-family: var(--font-heading); font-weight: 400; font-size: 1.1rem; margin-bottom: .8rem; }
.mariage-service p { color: rgba(255,255,255,.8); font-size: .9rem; line-height: 1.7; }

/* TIMELINE */
.timeline { max-width: 600px; margin: 3rem auto 0; position: relative; }
.timeline::before {
  content: ''; position: absolute; left: 20px; top: 0; bottom: 0;
  width: 1px; background: var(--gray-200);
}
.timeline-item { display: flex; gap: 2rem; margin-bottom: 2.5rem; position: relative; }
.timeline-dot {
  width: 40px; height: 40px; border-radius: 50%; background: var(--gold);
  color: var(--white); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-size: .9rem; flex-shrink: 0;
  position: relative; z-index: 1;
}
.timeline-content h3 { font-family: var(--font-heading); font-weight: 400; font-size: 1.1rem; margin-bottom: .5rem; }
.timeline-content p { color: var(--gray-700); font-size: .9rem; }

/* ═══════════════════════ SHOP ═══════════════════════ */
.shop-filters {
  display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 2rem;
}
.filter-btn {
  padding: .6rem 1.5rem; font-size: .8rem; letter-spacing: .1em;
  text-transform: uppercase; border: 1px solid var(--gray-200);
  color: var(--gray-700); transition: all .3s var(--ease);
}
.filter-btn.active, .filter-btn:hover {
  background: var(--gold); color: var(--white); border-color: var(--gold);
}

.how-it-works { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-top: 2rem; }
.hiw-step { text-align: center; }
.hiw-num {
  width: 50px; height: 50px; border: 1px solid var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-size: 1.2rem; color: var(--gold);
  margin: 0 auto 1rem;
}
.hiw-step h3 { font-family: var(--font-heading); font-weight: 400; font-size: 1rem; margin-bottom: .5rem; }
.hiw-step p { font-size: .85rem; color: var(--gray-700); }
@media (max-width: 600px) { .how-it-works { grid-template-columns: 1fr 1fr; } }

/* ═══════════════════════ EQUIPMENT ═══════════════════════ */
.equipment-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem; margin-top: 2rem;
}
.equipment-card {
  background: var(--white); border: 1px solid var(--gray-200);
  overflow: hidden; transition: all .4s var(--ease);
}
.equipment-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.equipment-card-img {
  height: 180px; background: var(--gray-100); overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.equipment-card-img img { width: 100%; height: 100%; object-fit: cover; }
.equipment-card-img .eq-placeholder {
  font-size: 3rem; opacity: .15;
}
.equipment-card-body { padding: 1.5rem; }
.equipment-card-cat {
  font-size: .65rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--gold); margin-bottom: .3rem;
}
.equipment-card h3 { font-family: var(--font-heading); font-size: 1rem; font-weight: 400; margin-bottom: .3rem; }
.equipment-card-brand { font-size: .8rem; color: var(--gray-500); margin-bottom: .8rem; }
.equipment-card p { font-size: .85rem; color: var(--gray-700); margin-bottom: 1rem; }
.equipment-specs { display: flex; flex-wrap: wrap; gap: .5rem; }
.equipment-spec {
  font-size: .7rem; padding: .3rem .6rem; background: var(--gray-100);
  color: var(--gray-700); border-radius: 2px;
}

/* ═══════════════════════ BIO ═══════════════════════ */
.bio-content {
  display: grid; grid-template-columns: 350px 1fr; gap: 4rem; align-items: start;
}
.bio-photo { position: relative; position: sticky; top: calc(var(--nav-h) + 2rem); }
.bio-photo img { width: 100%; aspect-ratio: 5/6; object-fit: cover; }
.bio-card {
  position: absolute; bottom: -1rem; left: -1rem; right: 1rem;
  background: var(--white); padding: 1.2rem 1.5rem; box-shadow: var(--shadow-md);
}
.bio-card h3 { font-family: var(--font-heading); font-size: 1rem; font-weight: 400; }
.bio-card p { font-size: .8rem; color: var(--gray-500); }

.bio-text h3 { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 400; margin: 2rem 0 1rem; color: var(--dark); }
.bio-text p { color: var(--gray-700); margin-bottom: 1rem; }

.bio-skills { margin: 1rem 0; }
.bio-skill { margin-bottom: .8rem; }
.bio-skill-label { font-size: .8rem; color: var(--gray-700); margin-bottom: .3rem; display: block; }
.bio-skill-bar { height: 4px; background: var(--gray-100); border-radius: 2px; overflow: hidden; }
.bio-skill-fill { height: 100%; background: var(--gold); width: var(--w); border-radius: 2px; transform: scaleX(0); transform-origin: left; transition: transform 1s var(--ease-out); }
.bio-skill.visible .bio-skill-fill { transform: scaleX(1); }

.bio-tags { display: flex; flex-wrap: wrap; gap: .5rem; }
.tag {
  padding: .4rem 1rem; font-size: .8rem; border: 1px solid var(--gray-200);
  color: var(--gray-700); transition: all .3s;
}
.tag:hover { border-color: var(--gold); color: var(--gold); }

@media (max-width: 768px) {
  .bio-content { grid-template-columns: 1fr; gap: 2rem; }
  .bio-photo { position: relative; top: 0; max-width: 300px; }
}

/* ═══════════════════════ CHECKOUT ═══════════════════════ */
.checkout-result { min-height: 60vh; display: flex; align-items: center; }
.checkout-icon { width: 80px; height: 80px; margin: 0 auto 2rem; }
.checkout-icon--success { color: #22c55e; }
.checkout-icon--cancel { color: #ef4444; }
.checkout-icon svg { width: 100%; height: 100%; }
.checkout-order { font-family: var(--font-mono); font-size: 1.2rem; color: var(--gold); margin-top: 1rem; }

/* ═══════════════════════ CART DRAWER ═══════════════════════ */
.cart-drawer {
  position: fixed; inset: 0; z-index: 6000;
  opacity: 0; visibility: hidden; transition: .3s var(--ease);
}
.cart-drawer.open { opacity: 1; visibility: visible; }
.cart-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.5); }
.cart-panel {
  position: absolute; right: 0; top: 0; bottom: 0; width: 400px; max-width: 90vw;
  background: var(--white); display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform .4s var(--ease);
}
.cart-drawer.open .cart-panel { transform: translateX(0); }
.cart-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.5rem; border-bottom: 1px solid var(--gray-200);
}
.cart-header h3 { font-family: var(--font-heading); font-weight: 400; font-size: 1.1rem; }
.cart-close { font-size: 1.5rem; color: var(--gray-500); }
.cart-body { flex: 1; overflow-y: auto; padding: 1.5rem; }
.cart-footer { padding: 1.5rem; border-top: 1px solid var(--gray-200); }

/* ═══════════════════════ ADMIN ═══════════════════════ */
.admin-layout { display: flex; min-height: 100vh; }
.admin-sidebar {
  width: 260px; background: var(--dark); color: var(--white);
  display: flex; flex-direction: column; position: fixed; top: 0; bottom: 0; z-index: 100;
}
.admin-sidebar-header {
  padding: 1.5rem; border-bottom: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; gap: 1rem;
}
.admin-logo {
  width: 36px; height: 36px; background: var(--gold); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem; font-weight: 700; letter-spacing: .05em;
}
.admin-nav { flex: 1; padding: 1rem 0; overflow-y: auto; }
.admin-nav-link {
  display: flex; align-items: center; gap: .8rem; padding: .8rem 1.5rem;
  font-size: .85rem; color: rgba(255,255,255,.6); transition: all .3s;
  position: relative;
}
.admin-nav-link svg { width: 18px; height: 18px; flex-shrink: 0; }
.admin-nav-link:hover, .admin-nav-link.active {
  color: var(--white); background: rgba(255,255,255,.05);
}
.admin-nav-link.active::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; background: var(--gold);
}
.admin-badge {
  background: #ef4444; color: var(--white); font-size: .65rem;
  padding: .15rem .5rem; border-radius: 10px; margin-left: auto;
}
.admin-badge:empty { display: none; }
.admin-sidebar-footer { padding: 1.5rem; border-top: 1px solid rgba(255,255,255,.1); }
.admin-logout {
  width: 100%; padding: .6rem; background: rgba(255,255,255,.05);
  color: rgba(255,255,255,.6); font-size: .8rem; border: 1px solid rgba(255,255,255,.1);
  transition: all .3s;
}
.admin-logout:hover { color: var(--white); border-color: rgba(255,255,255,.3); }

.admin-main { flex: 1; margin-left: 260px; background: var(--off-white); height: 100vh; overflow-y: auto; }
.admin-header {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 2rem; background: var(--white);
  border-bottom: 1px solid var(--gray-200); position: sticky; top: 0; z-index: 50;
}
.admin-header h2 { font-family: var(--font-heading); font-weight: 400; font-size: 1.2rem; flex: 1; }
.admin-menu-toggle { display: none; }
.admin-content { padding: 2rem; }

.admin-login-overlay {
  position: fixed; inset: 0; z-index: 200; background: var(--black);
  display: flex; align-items: center; justify-content: center;
  transition: .4s var(--ease);
}
.admin-login-overlay.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.admin-login-box { text-align: center; width: 360px; max-width: 90vw; }
.admin-login-logo {
  font-family: var(--font-heading); font-size: 1.3rem; letter-spacing: .2em;
  color: var(--white); display: block; margin-bottom: .5rem;
}
.admin-login-logo span { color: var(--gold); }
.admin-login-box h2 { color: var(--gray-500); font-family: var(--font-body); font-size: .85rem; letter-spacing: .15em; text-transform: uppercase; margin-bottom: 2rem; }
.admin-login-box input {
  width: 100%; padding: 1rem; background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.15); color: var(--white);
  margin-bottom: 1rem; font-size: .9rem;
}
.admin-login-box input::placeholder { color: var(--gray-500); }
.admin-login-box input:focus { outline: none; border-color: var(--gold); }
.admin-login-box .btn { width: 100%; margin-top: .5rem; }

/* Admin cards */
.admin-stats {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem; margin-bottom: 2rem;
}
.admin-stat {
  background: var(--white); padding: 1.5rem; border: 1px solid var(--gray-200);
}
.admin-stat-label { font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gray-500); margin-bottom: .5rem; }
.admin-stat-value { font-family: var(--font-heading); font-size: 2rem; color: var(--dark); }
.admin-stat-value.gold { color: var(--gold); }

.admin-table-wrap { overflow-x: auto; background: var(--white); border: 1px solid var(--gray-200); }
.admin-table { width: 100%; border-collapse: collapse; font-size: .85rem; }
.admin-table th {
  text-align: left; padding: .8rem 1rem; font-size: .7rem; letter-spacing: .1em;
  text-transform: uppercase; color: var(--gray-500); border-bottom: 1px solid var(--gray-200);
  background: var(--off-white);
}
.admin-table td { padding: .8rem 1rem; border-bottom: 1px solid var(--gray-100); vertical-align: middle; }
.admin-table tr:hover td { background: rgba(201,169,110,.03); }

.status-badge {
  display: inline-block; padding: .2rem .6rem; font-size: .7rem;
  letter-spacing: .05em; text-transform: uppercase; border-radius: 2px;
}
.status-badge--pending { background: #fef3c7; color: #92400e; }
.status-badge--paid { background: #d1fae5; color: #065f46; }
.status-badge--confirmed { background: #dbeafe; color: #1e40af; }
.status-badge--completed { background: #e0e7ff; color: #3730a3; }
.status-badge--cancelled { background: #fee2e2; color: #991b1b; }

.admin-toolbar {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 1.5rem; flex-wrap: wrap; gap: 1rem;
}
.admin-toolbar h3 { font-family: var(--font-heading); font-weight: 400; font-size: 1.1rem; }

.admin-form { background: var(--white); padding: 2rem; border: 1px solid var(--gray-200); margin-bottom: 2rem; }
.admin-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.admin-form label { font-size: .8rem; color: var(--gray-700); margin-bottom: .3rem; display: block; }
.admin-form input, .admin-form select, .admin-form textarea {
  width: 100%; padding: .7rem; border: 1px solid var(--gray-200);
  font-size: .85rem; background: var(--white);
}
.admin-form input:focus, .admin-form select:focus, .admin-form textarea:focus { outline: none; border-color: var(--gold); }
.admin-form-actions { display: flex; gap: .5rem; margin-top: 1rem; }

.admin-btn {
  padding: .5rem 1.2rem; font-size: .75rem; letter-spacing: .08em;
  text-transform: uppercase; border: 1px solid var(--gray-200);
  color: var(--gray-700); transition: all .3s; display: inline-flex;
  align-items: center; gap: .4rem;
}
.admin-btn:hover { border-color: var(--gold); color: var(--gold); }
.admin-btn--primary { background: var(--gold); color: var(--white); border-color: var(--gold); }
.admin-btn--primary:hover { background: var(--gold-dark); }
.admin-btn--danger { color: #ef4444; }
.admin-btn--danger:hover { background: #fef2f2; border-color: #ef4444; }
.admin-btn--small { padding: .3rem .6rem; font-size: .65rem; }

.admin-empty { text-align: center; padding: 3rem; color: var(--gray-500); font-size: .9rem; }

@media (max-width: 768px) {
  .admin-sidebar {
    transform: translateX(-100%); transition: transform .3s var(--ease);
    width: 260px;
  }
  .admin-sidebar.open { transform: translateX(0); }
  .admin-sidebar-overlay {
    display: none; position: fixed; inset: 0; background: rgba(0,0,0,.4); z-index: 99;
  }
  .admin-sidebar.open ~ .admin-sidebar-overlay { display: block; }
  .admin-main { margin-left: 0; }
  .admin-menu-toggle {
    display: flex; flex-direction: column; gap: 4px; width: 24px;
  }
  .admin-menu-toggle span { display: block; height: 1.5px; background: var(--dark); }
  .admin-content { padding: 1rem; }
  .admin-form-grid { grid-template-columns: 1fr; }
  .admin-stats { grid-template-columns: 1fr 1fr; }
}

.page--admin .nav { display: none; }

/* ═══════════════════════ GLOBAL RESPONSIVE ═══════════════════════ */
@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 2.5rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn { width: 100%; }
}

/* ═══════════════════════ CALENDAR (Client) ═══════════════════════ */
.pm-calendar {
  margin-bottom: 1.5rem;
}
.pm-cal-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 1rem;
}
.pm-cal-header h4 { font-family: var(--font-heading); font-weight: 400; font-size: 1rem; }
.pm-cal-nav {
  padding: .4rem .8rem; border: 1px solid var(--gray-200);
  font-size: .8rem; cursor: pointer; transition: all .2s;
}
.pm-cal-nav:hover { border-color: var(--gold); color: var(--gold); }
.pm-cal-grid {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px;
  text-align: center;
}
.pm-cal-dow {
  font-size: .65rem; text-transform: uppercase; letter-spacing: .1em;
  color: var(--gray-500); padding: .3rem 0; font-weight: 600;
}
.pm-cal-day {
  padding: .5rem .2rem; font-size: .85rem; cursor: pointer;
  border: 1px solid transparent; transition: all .2s; position: relative;
}
.pm-cal-day:hover:not(.disabled):not(.empty) {
  border-color: var(--gold); color: var(--gold);
}
.pm-cal-day.empty { cursor: default; }
.pm-cal-day.today { font-weight: 700; color: var(--gold); }
.pm-cal-day.selected {
  background: var(--gold); color: var(--white); font-weight: 600;
}
.pm-cal-day.in-range {
  background: var(--gold-light); color: var(--dark);
}
.pm-cal-day.disabled {
  color: var(--gray-300); cursor: not-allowed; text-decoration: line-through;
}
.pm-cal-day.booked {
  color: #ef4444; cursor: not-allowed;
}
.pm-cal-day.booked::after {
  content: ''; position: absolute; bottom: 2px; left: 50%;
  transform: translateX(-50%); width: 4px; height: 4px;
  border-radius: 50%; background: #ef4444;
}
.pm-cal-day.weekend-blocked {
  color: var(--gray-300); cursor: not-allowed; background: repeating-linear-gradient(45deg, transparent, transparent 3px, rgba(0,0,0,.04) 3px, rgba(0,0,0,.04) 6px);
}

/* ═══════════════════ DURATION PICKER ═══════════════════ */
.pm-duration {
  display: flex; gap: .5rem; margin-bottom: 1.5rem; flex-wrap: wrap;
}
.pm-duration-btn {
  flex: 1; min-width: 100px; padding: .7rem 1rem; text-align: center;
  border: 1px solid var(--gray-200); font-size: .8rem;
  letter-spacing: .05em; cursor: pointer; transition: all .2s;
}
.pm-duration-btn:hover:not(:disabled) { border-color: var(--gold); color: var(--gold); }
.pm-duration-btn:disabled { opacity: .35; cursor: not-allowed; }
.pm-duration-btn.active {
  background: var(--gold); color: var(--white); border-color: var(--gold);
  font-weight: 600;
}
.pm-duration-btn.pm-duration-forced { animation: pulse-gold .6s; }
@keyframes pulse-gold { 0%,100%{ box-shadow:none } 50%{ box-shadow:0 0 0 4px rgba(191,155,81,.35) } }
.pm-duration-btn small {
  display: block; font-size: .65rem; opacity: .7; margin-top: .2rem;
}

/* ═══════════════════ PRODUCT OPTIONS ═══════════════════ */
.pm-options { margin-bottom: 1.5rem; }
.pm-options h4 {
  font-family: var(--font-heading); font-weight: 400;
  margin-bottom: .8rem; font-size: .95rem;
}
.pm-option {
  display: flex; align-items: flex-start; gap: .8rem;
  padding: .8rem; border: 1px solid var(--gray-200);
  margin-bottom: .5rem; cursor: pointer; transition: all .2s;
}
.pm-option:hover { border-color: var(--gold-light); }
.pm-option.selected { border-color: var(--gold); background: rgba(201,169,110,.05); }
.pm-option input[type="checkbox"] {
  accent-color: var(--gold); margin-top: .2rem; flex-shrink: 0;
  width: 16px; height: 16px;
}
.pm-option-info { flex: 1; }
.pm-option-name { font-weight: 600; font-size: .85rem; }
.pm-option-desc { font-size: .75rem; color: var(--gray-500); margin-top: .2rem; }
.pm-option-price {
  font-weight: 600; color: var(--gold); font-size: .85rem; white-space: nowrap;
}

/* ═══════════════════ ADMIN PLANNING ═══════════════════ */
.planning-calendar {
  background: var(--white); border: 1px solid var(--gray-200);
  padding: 1.5rem; margin-bottom: 2rem;
}
.planning-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 1.5rem;
}
.planning-header h3 {
  font-family: var(--font-heading); font-weight: 400; font-size: 1.2rem;
  text-transform: capitalize;
}
.planning-nav { display: flex; gap: .5rem; }
.planning-nav button {
  padding: .4rem 1rem; border: 1px solid var(--gray-200);
  font-size: .75rem; text-transform: uppercase; letter-spacing: .08em;
  cursor: pointer; transition: all .2s;
}
.planning-nav button:hover { border-color: var(--gold); color: var(--gold); }
.planning-grid {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 1px;
  background: var(--gray-200);
}
.planning-dow {
  background: var(--gray-100); padding: .5rem; text-align: center;
  font-size: .7rem; text-transform: uppercase; letter-spacing: .1em;
  color: var(--gray-500); font-weight: 600;
}
.planning-day {
  background: var(--white); min-height: 80px; padding: .4rem;
  position: relative; cursor: pointer; transition: background .2s;
}
.planning-day:hover { background: var(--cream); }
.planning-day.empty { background: var(--gray-100); cursor: default; }
.planning-day.today { box-shadow: inset 0 0 0 2px var(--gold); }
.planning-day-num {
  font-size: .75rem; color: var(--gray-500); margin-bottom: .3rem;
  font-weight: 600;
}
.planning-day.today .planning-day-num { color: var(--gold); }
.planning-event {
  font-size: .6rem; padding: .15rem .4rem; margin-bottom: .15rem;
  border-radius: 3px; overflow: hidden; text-overflow: ellipsis;
  white-space: nowrap; cursor: pointer;
}
.planning-event--paid { background: #dcfce7; color: #166534; }
.planning-event--confirmed { background: #dbeafe; color: #1e40af; }
.planning-event--pending { background: #fef3c7; color: #92400e; }
.planning-event--blocked { background: #fee2e2; color: #991b1b; }
.planning-day--weekend { background: repeating-linear-gradient(45deg, transparent, transparent 3px, rgba(0,0,0,.04) 3px, rgba(0,0,0,.04) 6px); }
.planning-day--weekend .planning-day-num { opacity: .5; }

.planning-detail {
  background: var(--white); border: 1px solid var(--gray-200);
  padding: 1.5rem; margin-top: 1rem;
}
.planning-detail h4 {
  font-family: var(--font-heading); font-weight: 400; margin-bottom: 1rem;
}
.planning-event-card {
  display: flex; justify-content: space-between; align-items: center;
  padding: .8rem 1rem; border: 1px solid var(--gray-200);
  margin-bottom: .5rem; flex-wrap: wrap; gap: .5rem;
}
.planning-event-card strong { font-size: .85rem; }
.planning-event-card span { font-size: .75rem; color: var(--gray-500); }

/* ═══════════════════ ADMIN CLIENTS ═══════════════════ */
.clients-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1rem;
}
.client-card {
  background: var(--white); border: 1px solid var(--gray-200);
  padding: 1.2rem; transition: border-color .2s;
}
.client-card:hover { border-color: var(--gold); }
.client-card-header {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: .8rem;
}
.client-card-name { font-weight: 600; font-size: .95rem; }
.client-card-count {
  font-size: .7rem; background: var(--gold); color: var(--white);
  padding: .15rem .5rem; border-radius: 12px;
}
.client-card-email { font-size: .8rem; color: var(--gray-500); margin-bottom: .3rem; }
.client-card-phone { font-size: .8rem; color: var(--gray-500); }
.client-card-stats {
  display: flex; gap: 1.5rem; margin-top: .8rem; padding-top: .8rem;
  border-top: 1px solid var(--gray-100);
}
.client-card-stat { font-size: .75rem; }
.client-card-stat strong { color: var(--gold); display: block; font-size: .9rem; }
.client-card-actions { margin-top: .8rem; }

/* ═══════════════════ ADMIN SETTINGS ═══════════════════ */
.settings-section {
  background: var(--white); border: 1px solid var(--gray-200);
  padding: 1.5rem; margin-bottom: 1.5rem;
}
.settings-section h4 {
  font-family: var(--font-heading); font-weight: 400; font-size: 1rem;
  margin-bottom: 1rem; padding-bottom: .5rem; border-bottom: 1px solid var(--gray-100);
}
.settings-row {
  display: grid; grid-template-columns: 200px 1fr; gap: 1rem;
  align-items: center; margin-bottom: .8rem;
}
.settings-row label { font-size: .8rem; color: var(--gray-700); }
.settings-row input, .settings-row textarea, .settings-row select {
  width: 100%; padding: .6rem; border: 1px solid var(--gray-200);
  font-size: .85rem;
}
.settings-row input:focus, .settings-row textarea:focus { outline: none; border-color: var(--gold); }

/* ═══════════════════ ADMIN OPTIONS MANAGER ═══════════════════ */
.options-list { margin-top: 1rem; }
.option-row {
  display: flex; align-items: center; gap: .8rem;
  padding: .6rem .8rem; border: 1px solid var(--gray-200);
  margin-bottom: .3rem; font-size: .8rem;
}
.option-row-name { flex: 1; font-weight: 500; }
.option-row-price { color: var(--gold); font-weight: 600; }

/* ═══════════════════ PM RECAP ═══════════════════ */
.pm-recap {
  margin-top: 1rem; padding: 1rem; background: var(--cream);
  border: 1px solid var(--gray-200); font-size: .85rem;
}
.pm-recap-row {
  display: flex; justify-content: space-between; padding: .25rem 0;
}
.pm-recap-row.total {
  border-top: 1px solid var(--gray-300); padding-top: .5rem;
  margin-top: .5rem; font-weight: 700; font-size: .95rem;
}
.pm-recap-row.discount { color: #16a34a; }

/* ═══════════════════ CONTENT EDITOR (CMS) ═══════════════════ */
.content-editor { display: flex; flex-direction: column; gap: 1.5rem; }
.content-editor-section {
  background: var(--white); border: 1px solid var(--gray-200);
  padding: 1.5rem;
}
.content-editor-section h4 {
  font-family: var(--font-heading); font-weight: 400; font-size: 1rem;
  margin-bottom: 1rem; padding-bottom: .5rem; border-bottom: 1px solid var(--gray-100);
  color: var(--gold);
}
.content-editor-section .settings-row textarea {
  width: 100%; padding: .6rem; border: 1px solid var(--gray-200);
  font-size: .85rem; resize: vertical;
}
.content-editor-section .settings-row textarea:focus { outline: none; border-color: var(--gold); }
.content-img-field { display: flex; flex-direction: column; gap: .5rem; }
.content-img-preview {
  width: 200px; height: 120px; border: 1px dashed var(--gray-300);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; background: var(--gray-100); border-radius: 4px;
}
.content-img-preview img { width: 100%; height: 100%; object-fit: cover; }
.content-img-preview span { font-size: .75rem; color: var(--gray-500); }

@media (max-width: 768px) {
  .pm-duration { flex-direction: column; }
  .pm-cal-day { padding: .35rem .1rem; font-size: .75rem; }
  .planning-grid { font-size: .7rem; }
  .planning-day { min-height: 60px; padding: .3rem; }
  .clients-grid { grid-template-columns: 1fr; }
  .settings-row { grid-template-columns: 1fr; }
}

/* ═══════════════ TIMELINE ═══════════════ */
.section--timeline { background: var(--dark); }
.timeline {
  position: relative; padding: 2rem 0; margin-top: 2rem;
}
.timeline::before {
  content: ''; position: absolute; left: 50%; top: 0; bottom: 0;
  width: 2px; background: var(--gold); transform: translateX(-50%);
}
.timeline-item {
  position: relative; display: flex; align-items: flex-start;
  margin-bottom: 3rem; width: 50%; padding-right: 3rem;
}
.timeline-item:nth-child(even) {
  margin-left: 50%; padding-right: 0; padding-left: 3rem; flex-direction: row-reverse;
}
.timeline-item:nth-child(even) .timeline-card { text-align: left; }
.timeline-dot {
  position: absolute; top: .5rem; right: -8px;
  width: 16px; height: 16px; background: var(--gold); border-radius: 50%;
  border: 3px solid var(--dark); z-index: 2;
}
.timeline-item:nth-child(even) .timeline-dot { left: -8px; right: auto; }
.timeline-year {
  position: absolute; top: .3rem; right: -80px; font-family: var(--font-heading);
  font-size: 1.1rem; color: var(--gold); font-weight: 700; width: 60px; text-align: center;
}
.timeline-item:nth-child(even) .timeline-year { left: -80px; right: auto; }
.timeline-card {
  background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px; padding: 1.5rem; text-align: right; flex: 1;
}
.timeline-card h3 { font-size: 1.1rem; margin-bottom: .5rem; color: #fff; }
.timeline-card p { font-size: .9rem; color: var(--gray-400); line-height: 1.6; }

@media (max-width: 768px) {
  .timeline::before { left: 20px; }
  .timeline-item, .timeline-item:nth-child(even) {
    width: 100%; margin-left: 0; padding: 0 0 0 50px; flex-direction: row;
  }
  .timeline-item:nth-child(even) .timeline-card { text-align: left; }
  .timeline-card { text-align: left; }
  .timeline-dot, .timeline-item:nth-child(even) .timeline-dot { left: 12px; right: auto; }
  .timeline-year, .timeline-item:nth-child(even) .timeline-year {
    position: relative; left: auto; right: auto; top: auto;
    width: auto; margin-bottom: .5rem; display: block;
  }
  .timeline-item { flex-direction: column; }
  .timeline-item:nth-child(even) { flex-direction: column; }
}

/* ═══════════════ INVOICE (PUBLIC) ═══════════════ */
.page--facture { padding-top: 80px; min-height: 100vh; background: #f5f5f5; }
.invoice-view { max-width: 800px; margin: 0 auto; }
.invoice-paper {
  background: #fff; border-radius: 12px; box-shadow: 0 4px 24px rgba(0,0,0,.1);
  padding: 3rem; margin: 2rem 0;
}
.invoice-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 2rem; }
.invoice-logo {
  font-family: var(--font-heading); font-size: 1.5rem; color: var(--gold); letter-spacing: .05em;
}
.invoice-logo span { display: block; font-size: .7rem; letter-spacing: .3em; color: var(--gray-500); }
.invoice-meta { text-align: right; }
.invoice-meta h2 { font-size: 1.8rem; color: #333; margin: 0; letter-spacing: .1em; }
.invoice-meta p { margin: .25rem 0; font-size: .9rem; color: var(--gray-500); }
.invoice-client { margin-bottom: 2rem; padding: 1rem; background: #fafafa; border-radius: 8px; }
.invoice-client h3 { font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; color: var(--gray-500); margin-bottom: .5rem; }
.invoice-client p { margin: .2rem 0; font-size: .95rem; color: #333; }
.invoice-table {
  width: 100%; border-collapse: collapse; margin: 1.5rem 0;
}
.invoice-table th {
  background: #f5f5f5; padding: .75rem; text-align: left; font-size: .8rem;
  text-transform: uppercase; letter-spacing: .05em; color: var(--gray-500);
}
.invoice-table td { padding: .75rem; border-bottom: 1px solid #eee; color: #333; }
.invoice-table th:nth-child(2), .invoice-table td:nth-child(2) { text-align: center; }
.invoice-table th:nth-child(3), .invoice-table td:nth-child(3),
.invoice-table th:nth-child(4), .invoice-table td:nth-child(4) { text-align: right; }
.invoice-pdf-section { margin: 1.5rem 0; text-align: center; }
.invoice-pdf-viewer { width: 100%; height: 600px; border: 1px solid #e5e5e5; border-radius: 8px; }
@media (max-width: 768px) { .invoice-pdf-viewer { height: 400px; } }
.invoice-totals { text-align: right; margin: 1.5rem 0; }
.invoice-total-row { display: flex; justify-content: flex-end; gap: 2rem; padding: .4rem 0; font-size: .95rem; color: #555; }
.invoice-total-row--grand { font-size: 1.2rem; font-weight: 700; color: var(--gold); border-top: 2px solid var(--gold); padding-top: .75rem; margin-top: .5rem; }
.invoice-notes { margin: 1.5rem 0; padding: 1rem; background: #fafafa; border-radius: 8px; }
.invoice-notes h4 { font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; color: var(--gray-500); margin-bottom: .5rem; }
.invoice-notes p { color: #555; font-size: .9rem; }
.invoice-status {
  text-align: center; padding: 1rem; border-radius: 8px; margin: 1.5rem 0;
  font-weight: 700; font-size: 1.1rem; letter-spacing: .1em;
}
.invoice-status--paid { background: #dcfce7; color: #16a34a; }
.invoice-status--pending { background: #fef3c7; color: #d97706; }
.invoice-actions { text-align: center; margin: 1.5rem 0; }
.invoice-footer-info { text-align: center; margin-top: 2rem; padding-top: 1rem; border-top: 1px solid #eee; font-size: .8rem; color: var(--gray-500); }

@media (max-width: 600px) {
  .invoice-paper { padding: 1.5rem; }
  .invoice-header { flex-direction: column; gap: 1rem; }
  .invoice-meta { text-align: left; }
  .invoice-table { font-size: .85rem; }
  .invoice-table th, .invoice-table td { padding: .5rem .25rem; }
}

/* ═══════════════ ADMIN FORM CARD ═══════════════ */
.admin-form-card {
  background: var(--bg-card, #1a1a1a); border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px; padding: 1.5rem;
}

/* ═══════════════ CAPTCHA ═══════════════ */
.captcha-row { display: flex; align-items: center; gap: .8rem; margin: .8rem 0; }
.captcha-label { font-size: .9rem; font-weight: 500; white-space: nowrap; color: var(--gray-700); }
.captcha-input { width: 70px; text-align: center; padding: .5rem; border: 1px solid var(--gray-200); border-radius: 8px; background: var(--white); color: var(--gray-900); font-size: 1rem; }

/* ═══════════════ FOOTER CLIENT LINK ═══════════════ */
.footer-client-link { color: var(--gold); text-decoration: none; font-size: .85rem; }
.footer-client-link:hover { text-decoration: underline; }

/* ═══════════════ ESPACE CLIENT ═══════════════ */
.page--client { min-height: 100vh; background: var(--cream); }
.client-layout { max-width: 900px; margin: 0 auto; padding: 2rem 1.5rem; }
.client-login-wrapper { display: flex; justify-content: center; align-items: center; min-height: 80vh; }
.client-login-box { background: var(--white); border: 1px solid var(--gray-200); border-radius: 16px; padding: 2.5rem; width: 100%; max-width: 380px; text-align: center; box-shadow: 0 4px 24px rgba(0,0,0,.06); }
.client-login-logo { font-family: var(--font-heading); font-size: 1.2rem; letter-spacing: .1em; color: var(--dark); display: block; margin-bottom: 1.5rem; }
.client-login-logo span { color: var(--gold); }
.client-login-box h2 { font-family: var(--font-heading); font-weight: 300; font-size: 1.5rem; margin-bottom: 1.5rem; color: var(--gray-900); }
.client-login-box input { width: 100%; padding: .8rem 1rem; margin-bottom: .8rem; border: 1px solid var(--gray-200); border-radius: 8px; background: var(--white); color: var(--gray-900); font-size: .9rem; }
.client-login-box input::placeholder { color: var(--gray-500); }
.client-login-box .btn { width: 100%; margin-top: .5rem; }

.client-header { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; margin-bottom: 2rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--gray-200); }
.client-header h1 { font-family: var(--font-heading); font-weight: 300; font-size: 1.8rem; color: var(--gray-900); }
.client-header h1 span { color: var(--gold); }
.client-code { font-family: monospace; color: var(--gray-500); font-size: .85rem; margin-top: .3rem; }

.client-tabs { display: flex; gap: .5rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
.client-tab { padding: .6rem 1.2rem; border: 1px solid var(--gray-200); border-radius: 8px; background: transparent; color: var(--gray-700); cursor: pointer; font-size: .85rem; transition: all .2s; }
.client-tab:hover { border-color: var(--gold); color: var(--gold); }
.client-tab.active { background: var(--gold); color: #fff; border-color: var(--gold); font-weight: 600; }

.client-invoices-list { display: flex; flex-direction: column; gap: .8rem; }
.client-invoice-card { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; padding: 1rem 1.2rem; background: var(--white); border: 1px solid var(--gray-200); border-radius: 10px; box-shadow: 0 1px 4px rgba(0,0,0,.04); }
.client-invoice-info { flex: 1; min-width: 150px; }
.client-invoice-info strong { display: block; margin-bottom: .2rem; color: var(--gray-900); }
.client-invoice-info span { font-size: .8rem; color: var(--gray-500); }
.client-invoice-amount { font-size: 1.1rem; font-weight: 600; color: var(--gold); min-width: 80px; }

/* ═══════════════ DATE PROPOSAL CALENDAR ═══════════════ */
.invoice-facture-layout { display: grid; grid-template-columns: 1fr 380px; gap: 2rem; align-items: start; }
@media (max-width: 900px) {
  .invoice-facture-layout { grid-template-columns: 1fr; }
}

/* ═══════════════ BOOKING ═══════════════ */
.booking-container { max-width: 780px; margin: 0 auto; }
.booking-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid var(--gray-200); }
.booking-icon { width: 48px; height: 48px; border-radius: 12px; background: linear-gradient(135deg, var(--gold), #d4a94a); color: #fff; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.booking-title { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 400; color: var(--gray-900); margin: 0; }
.booking-subtitle { color: var(--gray-500); font-size: .85rem; margin: .2rem 0 0; }

.booking-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
@media (max-width: 640px) { .booking-grid { grid-template-columns: 1fr; } }

.booking-calendar-wrap { background: var(--white); border: 1px solid var(--gray-200); border-radius: 14px; padding: 1.2rem; box-shadow: 0 1px 6px rgba(0,0,0,.04); }
.booking-cal-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.booking-cal-month { font-weight: 600; font-size: .95rem; color: var(--gray-900); }
.booking-cal-nav { background: none; border: 1px solid var(--gray-200); color: var(--gray-600); width: 32px; height: 32px; border-radius: 8px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all .15s; }
.booking-cal-nav:hover { border-color: var(--gold); color: var(--gold); }
.booking-cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; }
.booking-cal-dow { text-align: center; font-size: .7rem; text-transform: uppercase; letter-spacing: .5px; color: var(--gray-400); padding: .4rem 0; font-weight: 600; }
.booking-cal-day { text-align: center; padding: .55rem .2rem; border-radius: 8px; cursor: pointer; font-size: .85rem; transition: all .15s; color: var(--gray-800); }
.booking-cal-day:hover:not(.disabled):not(.empty) { background: rgba(182,155,105,.12); color: var(--gold); }
.booking-cal-day.disabled { color: var(--gray-300); cursor: not-allowed; }
.booking-cal-day.today { font-weight: 700; color: var(--gold); position: relative; }
.booking-cal-day.today::after { content: ''; position: absolute; bottom: 3px; left: 50%; transform: translateX(-50%); width: 4px; height: 4px; border-radius: 50%; background: var(--gold); }
.booking-cal-day.selected { background: var(--gold); color: #fff; font-weight: 600; }
.booking-cal-day.selected::after { display: none; }
.booking-cal-day.empty { cursor: default; }

.booking-legend { display: flex; gap: 1rem; justify-content: center; margin-top: 1rem; padding-top: .8rem; border-top: 1px solid var(--gray-100); }
.booking-legend span { font-size: .7rem; color: var(--gray-500); display: flex; align-items: center; gap: .3rem; }
.legend-dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
.legend-dot--available { background: var(--gray-800); }
.legend-dot--today { background: var(--gold); }
.legend-dot--unavail { background: var(--gray-300); }

.booking-form-wrap { background: var(--white); border: 1px solid var(--gray-200); border-radius: 14px; padding: 1.2rem; box-shadow: 0 1px 6px rgba(0,0,0,.04); display: flex; flex-direction: column; }
.booking-empty { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .6rem; min-height: 180px; }
.booking-empty p { color: var(--gray-400); font-size: .85rem; text-align: center; margin: 0; }

.booking-form { display: flex; flex-direction: column; gap: .8rem; }
.booking-date-badge { display: flex; align-items: center; gap: .5rem; background: rgba(182,155,105,.1); border: 1px solid rgba(182,155,105,.25); border-radius: 10px; padding: .6rem .8rem; color: var(--gold); font-weight: 500; font-size: .85rem; text-transform: capitalize; }
.booking-field { display: flex; flex-direction: column; gap: .3rem; }
.booking-field label { font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .5px; color: var(--gray-500); }
.booking-submit { width: 100%; margin-top: .3rem; }

/* ═══════════════ PLANNING STATUS BUTTONS ═══════════════ */
.admin-btn.active { background: var(--gold); color: #000; border-color: var(--gold); }
.planning-day[data-status="option"] { background: rgba(59,130,246,.15); }
.planning-day[data-status="blocked"] { background: rgba(239,68,68,.15); }

/* ═══════════════ FORM INPUT GENERIC ═══════════════ */
.form-input { width: 100%; padding: .6rem .8rem; border: 1px solid var(--gray-200); border-radius: 8px; background: var(--white); color: var(--gray-900); font-size: .85rem; box-sizing: border-box; }
.form-input::placeholder { color: var(--gray-500); }
.form-input:focus { outline: none; border-color: var(--gold); }
