/* ============================================================
   Les Portes de l'Isba — Styles globaux
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@400;700;900&family=Cinzel:wght@400;500;600;700&family=Raleway:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&display=swap');

/* ---- Variables ---- */
:root {
  --gold:        #bd8a1e;
  --gold-light:  #d4a032;
  --gold-dim:    #7a5a12;
  --gold-bg:     rgba(189, 138, 30, 0.08);
  --purple:      #a46497;
  --purple-dark: #7a4a70;
  --purple-bg:   rgba(164, 100, 151, 0.08);

  --bg:          #0a0a0a;
  --bg-2:        #111111;
  --bg-3:        #181818;
  --bg-card:     #141414;
  --bg-card-2:   #1c1c1c;

  --text:        #f0e6cc;
  --text-muted:  #9a8a72;
  --text-dim:    #5a4e3e;
  --border:      rgba(189, 138, 30, 0.2);
  --border-dim:  rgba(255, 255, 255, 0.06);

  --radius:      8px;
  --radius-lg:   14px;
  --shadow:      0 4px 24px rgba(0,0,0,.5);
  --shadow-gold: 0 4px 24px rgba(189,138,30,.2);

  --font-title:  'Cinzel Decorative', serif;
  --font-heading:'Cinzel', serif;
  --font-body:   'Raleway', sans-serif;

  --nav-h:       72px;
  --transition:  0.3s ease;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: var(--font-body); cursor: pointer; border: none; background: none; }

/* ---- Typographie ---- */
h1, h2, h3, h4 { line-height: 1.2; }
h1 { font-family: var(--font-title); font-size: clamp(1.8rem, 5vw, 3.2rem); font-weight: 700; }
h2 { font-family: var(--font-title); font-size: clamp(1.4rem, 3.5vw, 2.2rem); font-weight: 700; }
h3 { font-family: var(--font-heading); font-size: clamp(1.1rem, 2.5vw, 1.5rem); font-weight: 600; }
h4 { font-family: var(--font-heading); font-size: 1rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
p { font-weight: 300; }

/* ---- Layout ---- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow { max-width: 780px; }
.container--wide   { max-width: 1300px; }

section { padding: 96px 0; }
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header h2 { color: var(--gold); margin-bottom: 16px; }
.section-header p  { color: var(--text-muted); max-width: 560px; margin: 0 auto; font-size: 1.05rem; }

.gold-line {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--purple), var(--gold), transparent);
  margin: 20px auto 0;
}

/* ---- Boutons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: all var(--transition);
  cursor: pointer;
}

.btn-gold {
  background: var(--gold);
  color: #0a0a0a;
  box-shadow: 0 2px 16px rgba(189,138,30,.3);
}
.btn-gold:hover {
  background: var(--gold-light);
  box-shadow: 0 4px 24px rgba(189,138,30,.5);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold-bg);
  box-shadow: 0 0 20px rgba(189,138,30,.2);
  transform: translateY(-2px);
}

.btn-purple {
  background: var(--purple);
  color: #fff;
}
.btn-purple:hover {
  background: var(--purple-dark);
  transform: translateY(-2px);
}

.btn-sm { padding: 10px 22px; font-size: .8rem; }
.btn-lg { padding: 18px 44px; font-size: 1rem; }

/* ---- NAVIGATION ---- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo img {
  height: 58px;
  width: auto;
}
.nav-logo-text {
  font-family: var(--font-heading);
  font-size: .95rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: .05em;
  line-height: 1.3;
}

/* Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  position: relative;
  padding: 8px 14px;
  font-family: var(--font-heading);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
  white-space: nowrap;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-link:hover,
.nav-link.active { color: var(--gold); }
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  min-width: 200px;
  padding: 8px 0;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(-8px);
  transition: all var(--transition);
  box-shadow: var(--shadow);
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-item {
  display: block;
  padding: 10px 20px;
  font-family: var(--font-heading);
  font-size: .8rem;
  letter-spacing: .05em;
  color: var(--text-muted);
  transition: all var(--transition);
}
.nav-dropdown-item:hover {
  color: var(--gold);
  background: var(--gold-bg);
}
.nav-dropdown > .nav-link::before {
  content: '';
  position: absolute;
  bottom: -16px;
  left: 0;
  right: 0;
  height: 16px;
}

/* CTA */
.nav-cta { margin-left: 12px; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  transition: all var(--transition);
  border-radius: 2px;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.nav-mobile {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10,10,10,.98);
  backdrop-filter: blur(16px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  padding: 28px 0 24px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.nav-mobile.open { opacity: 1; pointer-events: auto; }
.nav-mobile-link {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 14px 32px;
  transition: color var(--transition);
  text-align: center;
}
.nav-mobile-link:hover { color: var(--gold); }
.nav-mobile-sep {
  width: 40px;
  height: 1px;
  background: var(--border);
  margin: 8px auto;
}

/* Spacer sous nav */
.nav-spacer { height: var(--nav-h); }

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  filter: brightness(.4);
}
.hero-bg-fallback {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 40%, rgba(189,138,30,.15) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 60%, rgba(164,100,151,.12) 0%, transparent 60%),
              linear-gradient(180deg, #0a0a0a 0%, #111 100%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,.3) 0%, rgba(10,10,10,.7) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 40px 24px;
  max-width: 900px;
  margin: 0 auto;
}
.hero-eyebrow {
  font-family: var(--font-heading);
  font-size: .8rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
}
.hero h1 { color: var(--text); margin-bottom: 24px; text-shadow: 0 2px 20px rgba(0,0,0,.8); }
.hero h1 span { color: var(--gold); }
.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 40px;
}
.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-dim);
  font-size: .75rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  animation: bounce 2s ease infinite;
}
.hero-scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 1.5px solid var(--gold-dim);
  border-bottom: 1.5px solid var(--gold-dim);
  transform: rotate(45deg);
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ---- CARDS ---- */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.card:hover {
  border-color: rgba(164,100,151,.35);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold), 0 0 30px rgba(164,100,151,.08);
}
.card-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  background: var(--bg-3);
}
.card-img-placeholder {
  width: 100%;
  height: 240px;
  background: linear-gradient(135deg, var(--bg-3), var(--bg-2));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  font-size: .8rem;
  letter-spacing: .1em;
}
.card-body { padding: 28px; }
.card-tag {
  font-family: var(--font-heading);
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.card-body h3 { margin-bottom: 12px; }
.card-body p { color: var(--text-muted); font-size: .9rem; margin-bottom: 20px; }

/* ---- GRILLES ---- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* Image + texte côte à côte, une seule colonne en mobile.
   minmax(0, 1fr) : une colonne peut rétrécir sous la largeur de son contenu (sinon débordement) */
.grid-split { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 64px; align-items: center; }
@media (max-width: 768px) {
  .grid-split { grid-template-columns: minmax(0, 1fr); gap: 32px; }
  .grid-split > * { order: 0 !important; } /* annule l'alternance gauche/droite : image toujours au-dessus */
}

/* ---- STATS / BADGES ---- */
.stat-block { text-align: center; padding: 32px; }
.stat-block .stat-number {
  font-family: var(--font-title);
  font-size: 2.8rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-block .stat-label {
  font-family: var(--font-heading);
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ---- BADGE ---- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 20px;
  font-family: var(--font-heading);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.badge-gold { background: var(--gold-bg); color: var(--gold); border: 1px solid var(--border); }
.badge-purple { background: var(--purple-bg); color: var(--purple); border: 1px solid rgba(164,100,151,.3); }

/* ---- SÉPARATEUR ---- */
.sep {
  border: none;
  height: 1px;
  background: var(--border-dim);
  margin: 48px 0;
}
.sep-gold {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
  margin: 64px 0;
}

/* ---- PRIX ---- */
.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
}
.price-card:hover,
.price-card.featured {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}
.price-card.featured { background: var(--bg-card-2); }
.price-card-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
}
.price-card h3 {
  font-size: 1rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.price-amount {
  font-family: var(--font-title);
  font-size: 2.6rem;
  color: var(--gold);
  line-height: 1;
}
.price-amount span {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-muted);
}
.price-desc { font-size: .85rem; color: var(--text-muted); margin: 12px 0 24px; }
.price-features { text-align: left; margin-bottom: 28px; }
.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: .875rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border-dim);
}
.price-features li:last-child { border-bottom: none; }
.price-features li::before {
  content: '✦';
  color: var(--gold);
  font-size: .65rem;
  margin-top: 5px;
  flex-shrink: 0;
}

/* ---- FAQ ACCORDION ---- */
.faq-item {
  border-bottom: 1px solid var(--border-dim);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  transition: color var(--transition);
}
.faq-question:hover { color: var(--gold); }
.faq-icon {
  width: 24px;
  height: 24px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 1rem;
  transition: all var(--transition);
}
.faq-item.open .faq-icon { transform: rotate(45deg); border-color: var(--gold); }
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height .4s ease, padding .3s ease;
}
.faq-answer-inner {
  padding-bottom: 20px;
  color: var(--text-muted);
  font-size: .95rem;
  line-height: 1.75;
}
.faq-item.open .faq-answer { max-height: 400px; }

/* ---- FORMULAIRE ---- */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-family: var(--font-heading);
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: var(--bg-3);
  border: 1.5px solid var(--border-dim);
  border-radius: var(--radius);
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--text-dim); }
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(189,138,30,.15);
}
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23bd8a1e' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
  cursor: pointer;
}
.form-textarea { min-height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* ---- HORAIRES ---- */
.horaires-table { width: 100%; border-collapse: collapse; }
.horaires-table tr { border-bottom: 1px solid var(--border-dim); }
.horaires-table tr:last-child { border-bottom: none; }
.horaires-table td {
  padding: 16px 0;
  font-size: .95rem;
}
.horaires-table td:first-child {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--text-muted);
  width: 160px;
}
.horaires-table td:last-child { color: var(--text); }
.horaires-table .ferme { color: var(--text-dim); }
.horaires-table tr.today td { color: var(--gold); }

/* ---- PANIER ---- */
.cart-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-dim);
}
.cart-item-img {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: var(--radius);
  background: var(--bg-3);
  flex-shrink: 0;
}
.cart-item-info { flex: 1; }
.cart-item-info h4 { font-size: .95rem; margin-bottom: 4px; }
.cart-item-info p  { font-size: .82rem; color: var(--text-muted); }
.cart-item-price {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--gold);
  white-space: nowrap;
}
.cart-summary {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.cart-summary-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  font-size: .9rem;
  border-bottom: 1px solid var(--border-dim);
}
.cart-summary-row:last-of-type { border-bottom: none; }
.cart-summary-row.total {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--gold);
  font-weight: 600;
  padding-top: 16px;
  margin-top: 8px;
  border-top: 1px solid var(--border);
}

/* ---- TEAM BUILDING ---- */
.tb-feature {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}
.tb-feature:hover { border-color: var(--border); box-shadow: var(--shadow-gold); }
.tb-feature-icon {
  width: 48px;
  height: 48px;
  background: var(--gold-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}
.tb-feature-icon::before {
  content: '';
  width: 18px;
  height: 18px;
  background: var(--gold);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}
.tb-feature-body h3 { font-size: 1rem; margin-bottom: 8px; }
.tb-feature-body p  { font-size: .875rem; color: var(--text-muted); }

/* ---- FOOTER ---- */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border-dim);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand-logo {
  height: 44px;
  margin-bottom: 16px;
}
.footer-brand-text {
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 280px;
}
.footer-socials { display: flex; gap: 12px; }
.footer-social {
  width: 36px;
  height: 36px;
  background: var(--bg-3);
  border: 1px solid var(--border-dim);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  color: var(--text-muted);
  transition: all var(--transition);
}
.footer-social:hover { border-color: var(--gold); color: var(--gold); }

.footer-col-title {
  font-family: var(--font-heading);
  font-size: .75rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-link {
  font-size: .875rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-link:hover { color: var(--gold); }

.footer-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: .875rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  line-height: 1.5;
}
.footer-contact-icon { color: var(--gold); flex-shrink: 0; margin-top: 2px; }

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid var(--border-dim);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .8rem;
  color: var(--text-dim);
  flex-wrap: wrap;
  gap: 12px;
}

/* ---- PAGE HERO (sous-pages) ---- */
.page-hero {
  padding: 80px 0 64px;
  text-align: center;
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border-dim);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(189,138,30,.08) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-eyebrow {
  font-family: var(--font-heading);
  font-size: .75rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 16px;
}
.page-hero h1 { color: var(--text); margin-bottom: 16px; }
.page-hero p  { color: var(--text-muted); max-width: 520px; margin: 0 auto; }

/* ---- SCROLL ANIMATIONS ---- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ---- NOTIFICATION / ALERT ---- */
.alert {
  padding: 14px 20px;
  border-radius: var(--radius);
  font-size: .875rem;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.alert-info {
  background: rgba(164,100,151,.1);
  border: 1px solid rgba(164,100,151,.3);
  color: var(--text-muted);
}
.alert-success {
  background: rgba(34,197,94,.08);
  border: 1px solid rgba(34,197,94,.2);
  color: #4ade80;
}

/* ---- ICONES CSS ---- */
.ic-loc, .ic-tel, .ic-mail {
  display: inline-block;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  background-color: var(--gold);
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}
.ic-loc {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 10c0 7-9 13-9 13S3 17 3 10a9 9 0 0118 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 10c0 7-9 13-9 13S3 17 3 10a9 9 0 0118 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E");
}
.ic-tel {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 01-2.18 2 19.79 19.79 0 01-8.63-3.07A19.5 19.5 0 013.09 9.93 19.79 19.79 0 01.06 1.34 2 2 0 012.03 0h3a2 2 0 012 1.72c.127.96.361 1.903.7 2.81a2 2 0 01-.45 2.11L6.09 7.91a16 16 0 006 6l1.27-1.27a2 2 0 012.11-.45c.907.339 1.85.573 2.81.7A2 2 0 0122 14.92v2z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 01-2.18 2 19.79 19.79 0 01-8.63-3.07A19.5 19.5 0 013.09 9.93 19.79 19.79 0 01.06 1.34 2 2 0 012.03 0h3a2 2 0 012 1.72c.127.96.361 1.903.7 2.81a2 2 0 01-.45 2.11L6.09 7.91a16 16 0 006 6l1.27-1.27a2 2 0 012.11-.45c.907.339 1.85.573 2.81.7A2 2 0 0122 14.92v2z'/%3E%3C/svg%3E");
}
.ic-mail {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z'/%3E%3Cpolyline points='22,6 12,13 2,6'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z'/%3E%3Cpolyline points='22,6 12,13 2,6'/%3E%3C/svg%3E");
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .nav-links { gap: 0; }
  .nav-link  { padding: 8px 10px; font-size: .75rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

/* ---- AVIS CLIENTS ---- */
.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all var(--transition);
}
.review-card:hover {
  border-color: rgba(164,100,151,.35);
  box-shadow: 0 4px 24px rgba(164,100,151,.1);
  transform: translateY(-3px);
}
.review-stars { color: #f59e0b; font-size: 1rem; letter-spacing: .1em; }
.review-text {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
}
.review-author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.review-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-bg), var(--gold-bg));
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: .85rem;
  font-weight: 600;
  color: var(--purple);
  flex-shrink: 0;
}
.review-author strong { display: block; font-size: .85rem; color: var(--text); }
.review-author span   { font-size: .75rem; color: var(--text-dim); }

/* ---- EFFETS VISUELS ---- */

/* Shimmer doré sur les titres de section */
@keyframes shimmer {
  0%   { background-position: 200% center; }
  100% { background-position: -200% center; }
}
.section-header h2 {
  background: linear-gradient(90deg, var(--gold) 30%, #fff3c4 50%, var(--gold) 70%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 5s linear infinite;
}

/* Glow pulsant sur le bouton principal */
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 2px 16px rgba(189,138,30,.3); }
  50%       { box-shadow: 0 2px 30px rgba(189,138,30,.7), 0 0 60px rgba(189,138,30,.15); }
}
.btn-gold {
  animation: pulse-glow 2.8s ease-in-out infinite;
}
.btn-gold:hover {
  animation: none;
}

/* Hero fallback — fond qui respire doucement */
@keyframes hero-breathe {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.65; }
}
.hero-bg-fallback {
  animation: hero-breathe 8s ease-in-out infinite;
}

/* -------------------------------------------------------- */

@media (max-width: 768px) {
  section { padding: 72px 0; }
  .section-header { margin-bottom: 44px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .hero-btns { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  section { padding: 56px 0; }
  .price-card { padding: 28px 20px; }
  .nav-mobile-link { padding: 10px 24px; font-size: 1rem; }
}

/* ---- SCROLLBAR PERSONNALISÉE ---- */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--gold), var(--purple));
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover { background: var(--gold-light); }

/* ---- BARRE DE PROGRESSION SCROLL ---- */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--purple), var(--gold));
  z-index: 1001;
  transition: width 0.08s linear;
}

/* ---- GLITCH HERO TITLE ---- */
@keyframes glitch-filter {
  0%, 100%  { filter: none; transform: translate(0); }
  10%, 11%  { filter: hue-rotate(90deg) saturate(5); transform: translate(-3px, 0); }
  20%, 21%  { filter: hue-rotate(270deg); transform: translate(3px, 0); }
  40%, 41%  { filter: brightness(2) contrast(2); transform: translate(-2px, 1px); }
  42%       { filter: none; transform: translate(0); }
  60%, 61%  { filter: hue-rotate(180deg) saturate(3); transform: translate(2px, -1px); }
  62%       { filter: none; transform: translate(0); }
  80%, 81%  { filter: invert(.15) saturate(4); transform: translate(-1px, 1px); }
  82%       { filter: none; transform: translate(0); }
}
.hero h1 { position: relative; }
.hero h1.glitch { animation: glitch-filter 0.5s steps(1) 1 forwards; }

/* ---- RÉSERVATION : grille responsive ---- */
.grid-res {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}
@media (max-width: 768px) {
  .grid-res { grid-template-columns: minmax(0, 1fr); } /* 1fr seul ne rétrécit pas sous la largeur du contenu */
}

/* ---- PAGE LOADER ---- */
.loader-logo {
  height: 72px;
  width: auto;
  object-fit: contain;
}
#page-loader {
  position: fixed;
  inset: 0;
  z-index: 9990;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  will-change: opacity;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}
#page-loader.loader-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader-icon {
  color: var(--gold);
  animation: loader-pulse 2s ease-in-out infinite;
}
@keyframes loader-pulse {
  0%, 100% {
    filter: drop-shadow(0 0 5px rgba(189,138,30,.35));
    opacity: .7;
    transform: scale(1) rotate(-45deg);
  }
  50% {
    filter: drop-shadow(0 0 18px rgba(189,138,30,.85));
    opacity: 1;
    transform: scale(1.08) rotate(-45deg);
  }
}
.loader-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: loader-rise 0.9s cubic-bezier(.22,1,.36,1) both;
}
@keyframes loader-rise {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.loader-brand {
  font-family: var(--font-title);
  font-size: clamp(.95rem, 2.5vw, 1.35rem);
  color: var(--gold);
  letter-spacing: .14em;
  text-transform: uppercase;
}
.loader-sub {
  font-family: var(--font-heading);
  font-size: .65rem;
  letter-spacing: .25em;
  color: var(--text-dim);
  text-transform: uppercase;
}
.loader-bar-wrap {
  width: 120px;
  height: 1px;
  background: rgba(189,138,30,.15);
  border-radius: 2px;
  overflow: hidden;
}
.loader-bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--gold-dim), var(--gold-light));
  border-radius: 2px;
  animation: loader-fill 0.85s 0.1s cubic-bezier(.4,0,.2,1) forwards;
}
@keyframes loader-fill {
  to { width: 100%; }
}

/* ---- CARTES VISUELLES (sans photo) ---- */
.card-visual {
  width: 100%;
  height: 200px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.card-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 40%, rgba(255,255,255,.07) 0%, transparent 70%);
  pointer-events: none;
}
.card-visual svg {
  width: 72px;
  height: 72px;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,.4));
}
.card-visual--anniversaire {
  background: linear-gradient(135deg, #5a3d0a 0%, #9a6e14 40%, #6b3e60 100%);
}
.card-visual--anniversaire svg { color: #fdd876; }
.card-visual--evg {
  background: linear-gradient(135deg, #5a2e50 0%, #8a4880 40%, #9a6e14 100%);
}
.card-visual--evg svg { color: #f0c0e0; }
.card-visual--amis {
  background: linear-gradient(135deg, #0d1f3c 0%, #1a3a5c 40%, #2a1a3c 100%);
}
.card-visual--amis svg { color: #7eb8f7; }

/* ---- WHATSAPP FLOTTANT ---- */
#whatsapp-btn {
  position: fixed;
  bottom: 88px;
  right: 28px;
  z-index: 800;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,.35);
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
}
#whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37,211,102,.5);
}
#whatsapp-btn svg {
  width: 26px;
  height: 26px;
  fill: #fff;
}
@media (max-width: 768px) {
  #whatsapp-btn { bottom: 136px; right: 16px; }
  #back-to-top  { bottom: 84px; right: 16px; }
}

/* ---- RETOUR EN HAUT ---- */
#back-to-top {
  position: fixed;
  bottom: 32px;
  right: 28px;
  z-index: 800;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .3s, visibility .3s, transform .3s, background .2s, box-shadow .2s;
}
#back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
#back-to-top:hover {
  background: var(--gold-bg);
  border-color: var(--gold);
  box-shadow: 0 0 16px rgba(189,138,30,.25);
}
#back-to-top svg {
  width: 18px; height: 18px;
  fill: none; stroke: currentColor; stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
}

/* ---- TRANSITION DE PAGE ---- */
#page-transition {
  position: fixed;
  inset: 0;
  z-index: 9985;
  background: var(--bg);
  opacity: 0;
  pointer-events: none;
  transition: opacity .32s ease;
}
#page-transition.active {
  opacity: 1;
  pointer-events: all;
}

/* ---- BANDEAU COOKIES RGPD ---- */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9500;
  background: rgba(13,13,13,.97);
  border-top: 1px solid var(--border-dim);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  transform: translateY(0);
  transition: transform .45s cubic-bezier(.4,0,.2,1);
}
#cookie-banner.dismissed { transform: translateY(110%); }
.cookie-text { font-size: .8rem; color: var(--text-muted); line-height: 1.65; max-width: 700px; }
.cookie-text a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btn {
  font-family: var(--font-heading);
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 9px 20px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all .2s;
}
.cookie-btn-accept { background: var(--gold); color: #0a0a0a; border: none; }
.cookie-btn-accept:hover { background: var(--gold-light); }
.cookie-btn-refuse { background: transparent; color: var(--text-dim); border: 1px solid var(--border-dim); }
.cookie-btn-refuse:hover { color: var(--text-muted); border-color: var(--border); }
@media (max-width: 600px) {
  #cookie-banner { flex-direction: column; align-items: flex-start; }
  .cookie-btns { width: 100%; }
  .cookie-btn { flex: 1; text-align: center; }
}

/* ---- SOCIAL PROOF ---- */
#social-proof-container {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 8000;
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: none;
}
.social-proof-notif {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(13,13,13,.95);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 12px 16px;
  max-width: 268px;
  box-shadow: 0 8px 32px rgba(0,0,0,.6);
  transform: translateX(-120%);
  opacity: 0;
  transition: transform .5s cubic-bezier(.22,1,.36,1), opacity .4s;
}
.social-proof-notif.in  { transform: translateX(0);    opacity: 1; }
.social-proof-notif.out { transform: translateX(-120%); opacity: 0; }
.social-proof-avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dim), var(--purple-dark));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-size: .78rem; font-weight: 700;
  color: var(--text); flex-shrink: 0;
}
.social-proof-body { min-width: 0; }
.social-proof-name   { font-family: var(--font-heading); font-size: .72rem; color: var(--text); font-weight: 600; }
.social-proof-action { font-size: .68rem; color: var(--text-muted); margin-top: 2px; }
.social-proof-time   { font-size: .62rem; color: var(--text-dim); margin-top: 3px; }
@media (max-width: 480px) { #social-proof-container { display: none; } }

/* ---- LIGHTBOX ---- */
#lightbox {
  position: fixed;
  inset: 0;
  z-index: 9800;
  background: rgba(0,0,0,.93);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
  cursor: zoom-out;
}
#lightbox.open { opacity: 1; visibility: visible; }
#lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 80px rgba(0,0,0,.8);
  transform: scale(.93);
  transition: transform .35s cubic-bezier(.22,1,.36,1);
  cursor: default;
}
#lightbox.open #lightbox-img { transform: scale(1); }
#lightbox-close {
  position: absolute;
  top: 20px; right: 24px;
  color: rgba(255,255,255,.6);
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 1.4rem; line-height: 1;
  transition: background .2s, color .2s;
}
#lightbox-close:hover { background: rgba(255,255,255,.1); color: #fff; }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,.5);
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 1.4rem;
  transition: background .2s, color .2s;
}
.lightbox-nav:hover { background: rgba(255,255,255,.1); color: #fff; }
#lightbox-prev { left: 20px; }
#lightbox-next { right: 20px; }
#lightbox-caption {
  position: absolute;
  bottom: 24px; left: 0; right: 0;
  text-align: center;
  font-family: var(--font-heading);
  font-size: .7rem; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.4);
}
.lightbox-trigger { cursor: zoom-in; }
.lightbox-trigger:hover { filter: brightness(1.08); }

/* ---- PARTICULES HERO ---- */
.hero-particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  animation: particle-float linear infinite;
}
@keyframes particle-float {
  0%   { transform: translateY(0) translateX(0); opacity: 0; }
  8%   { opacity: 1; }
  92%  { opacity: .4; }
  100% { transform: translateY(-100vh) translateX(var(--tx, 0px)); opacity: 0; }
}

/* ---- BADGE PROCHAIN CRÉNEAU ---- */
#next-slot-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(189,138,30,.08);
  border: 1px solid rgba(189,138,30,.25);
  border-radius: 40px;
  padding: 7px 18px;
  font-family: var(--font-heading);
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 16px;
  animation: loader-rise .8s .4s cubic-bezier(.22,1,.36,1) both;
}
.next-slot-dot {
  width: 7px; height: 7px;
  background: #22c55e;
  border-radius: 50%;
  animation: slot-blink 1.6s ease-in-out infinite;
}
@keyframes slot-blink {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34,197,94,.5); }
  50%       { opacity: .7; box-shadow: 0 0 0 5px rgba(34,197,94,0); }
}

/* ---- STICKY CTA MOBILE ---- */
#mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 12px 16px;
  background: rgba(10,10,10,.97);
  border-top: 1px solid var(--border);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
@media (max-width: 768px) {
  #mobile-sticky-cta { display: block; }
  body { padding-bottom: 68px; }
}
