/* ====== À MODIFIER ====== */
:root {
  --accent: #ff3d7f;
  --bg: #0a0a0a;
  --bg-2: #141414;
  --bg-3: #1d1d1d;
  --text: #ffffff;
  --muted: rgba(255, 255, 255, .65);
  --line: rgba(255, 255, 255, .12);
  --radius: 14px;
  --max: 1200px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text); font-family: "Inter", sans-serif; line-height: 1.6; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { width: min(var(--max), 100% - 32px); margin-inline: auto; }
.section { padding: clamp(64px, 10vw, 120px) 0; }
.section--alt { background: var(--bg-2); }

.eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.title {
  font-family: "Anton", sans-serif;
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.lead { color: var(--muted); max-width: 640px; font-size: 1.05rem; }
.section-head { margin-bottom: 48px; }

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-family: inherit;
  transition: transform .2s, box-shadow .2s;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(255, 61, 127, .35); }
.btn--ghost { background: transparent; border: 1px solid var(--line); }
.btn--ghost:hover { border-color: #fff; box-shadow: none; }

/* ====== NAVIGATION ====== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background .3s, backdrop-filter .3s, border-color .3s;
  border-bottom: 1px solid transparent;
}
.nav.is-solid {
  background: rgba(10, 10, 10, .85);
  backdrop-filter: blur(12px);
  border-color: var(--line);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav__logo {
  font-family: "Anton", sans-serif;
  font-size: 1.6rem;
  text-transform: uppercase;
  letter-spacing: .03em;
}
.nav__logo span { color: var(--accent); }
.nav__links { display: flex; gap: 8px; list-style: none; }
.nav__links a {
  display: block;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  transition: background .2s;
}
.nav__links a:hover { background: rgba(255, 255, 255, .08); }
.nav__links a.is-active { background: var(--accent); }

.nav__burger {
  display: none;
  width: 44px; height: 44px;
  background: none; border: none; cursor: pointer;
  position: relative;
}
.nav__burger span, .nav__burger::before, .nav__burger::after {
  content: "";
  position: absolute;
  left: 10px; right: 10px;
  height: 2px;
  background: #fff;
  transition: transform .3s, opacity .3s;
}
.nav__burger::before { top: 14px; }
.nav__burger span { top: 21px; }
.nav__burger::after { top: 28px; }
.nav.is-open .nav__burger::before { transform: translateY(7px) rotate(45deg); }
.nav.is-open .nav__burger span { opacity: 0; }
.nav.is-open .nav__burger::after { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 720px) {
  .nav__burger { display: block; }
  .nav__links {
    position: absolute;
    top: 72px; left: 0; right: 0;
    flex-direction: column;
    padding: 16px;
    background: rgba(10, 10, 10, .97);
    border-bottom: 1px solid var(--line);
    display: none;
  }
  .nav.is-open .nav__links { display: flex; }
  .nav.is-open { background: rgba(10, 10, 10, .97); }
  .nav__links a { padding: 14px 20px; }
}

/* ====== HERO (accueil) ====== */
.hero {
  position: relative;
  height: 100vh;
  height: 100svh;
  min-height: 560px;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute;
  top: 0; bottom: 0; left: 50%;
  translate: -50% 0;
  /* Sur écran large : la photo entière au centre, avec un fondu doux sur ses bords */
  aspect-ratio: var(--ratio, 1);
  max-width: none;
  background: var(--img, none) center / cover no-repeat;
  -webkit-mask-image:
    linear-gradient(to right, transparent 0%, #000 28%, #000 72%, transparent 100%),
    linear-gradient(to bottom, #000 80%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(to right, transparent 0%, #000 28%, #000 72%, transparent 100%),
    linear-gradient(to bottom, #000 80%, transparent 100%);
  mask-composite: intersect;
  transform: scale(1.05);
  animation: zoom 18s ease-out forwards;
  z-index: -2;
}
/* Même photo, floutée, pour remplir les côtés */
.hero__blur {
  position: absolute;
  inset: -60px;
  background: var(--img, none) center / cover no-repeat, linear-gradient(135deg, #2a0f1f, #0a0a0a);
  filter: blur(50px) brightness(.6) saturate(1.1);
  z-index: -3;
}
/* Sur écran étroit (téléphone) : la photo remplit tout */
@media (max-aspect-ratio: 1/1) {
  .hero__bg { left: 0; right: 0; translate: none; aspect-ratio: auto; background-position: center 35%; -webkit-mask-image: none; mask-image: none; }
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(0, 0, 0, .05) 0%, rgba(0, 0, 0, .45) 80%),
    linear-gradient(to bottom, rgba(0, 0, 0, .3), rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0) 70%, var(--bg));
  z-index: -1;
}
.hero__content { text-align: center; padding: 0 16px; }
.hero__tag {
  display: inline-block;
  font-size: clamp(.7rem, 1.6vw, .9rem);
  font-weight: 600;
  letter-spacing: .4em;
  text-transform: uppercase;
  padding: .6em 1.4em;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 999px;
  backdrop-filter: blur(6px);
  background: rgba(255, 255, 255, .06);
  opacity: 0;
  animation: fadeUp .9s .2s ease-out forwards;
}
.hero__name {
  font-family: "Anton", sans-serif;
  font-size: clamp(4.5rem, 19vw, 17rem);
  line-height: .9;
  text-transform: uppercase;
  letter-spacing: .02em;
  margin: .12em 0 .08em;
  text-shadow: 0 10px 60px rgba(0, 0, 0, .55);
  opacity: 0;
  animation: fadeUp 1.1s .4s cubic-bezier(.2, .8, .2, 1) forwards;
}
.hero__name span { color: var(--accent); }
.hero__sub {
  font-size: clamp(.95rem, 2.2vw, 1.25rem);
  color: rgba(255, 255, 255, .85);
  opacity: 0;
  animation: fadeUp .9s .7s ease-out forwards;
}
.hero__scroll {
  position: absolute;
  bottom: 28px; left: 50%;
  width: 26px; height: 42px;
  border: 2px solid rgba(255, 255, 255, .6);
  border-radius: 20px;
  transform: translateX(-50%);
}
.hero__scroll::before {
  content: "";
  position: absolute;
  top: 8px; left: 50%;
  width: 4px; height: 8px;
  background: #fff;
  border-radius: 2px;
  transform: translateX(-50%);
  animation: scrollDot 1.6s infinite;
}

/* Petit hero pour les pages Boutique / Réservation */
.page-hero {
  padding: 160px 0 64px;
  text-align: center;
  background: radial-gradient(ellipse at top, rgba(255, 61, 127, .18), transparent 60%);
}
.page-hero .title { font-size: clamp(3rem, 10vw, 7rem); margin-bottom: 12px; }
.page-hero .lead { margin-inline: auto; }

/* ====== Photos / placeholders ======
   Chaque .ph contient une vraie <img> (avec description pour Google) ;
   si la photo n'existe pas encore, un dégradé avec le libellé reste visible. */
.ph {
  position: relative;
  background: linear-gradient(135deg, #2a1420, #151515);
  border-radius: var(--radius);
  overflow: hidden;
}
.ph > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.ph[data-label]::before {
  content: attr(data-label);
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: .8rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .25);
  z-index: 0;
}

/* ====== PRÉSENTATION ====== */
.about {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}
.about__photo { aspect-ratio: 4 / 5; }
.about__text p { color: var(--muted); margin-bottom: 16px; }
.about__stats { display: flex; gap: 40px; margin-top: 32px; flex-wrap: wrap; }
.about__stats strong { display: block; font-family: "Anton", sans-serif; font-size: 2.4rem; color: var(--accent); line-height: 1; }
.about__stats span { font-size: .85rem; color: var(--muted); }
@media (max-width: 820px) { .about { grid-template-columns: 1fr; } }

/* ====== BOOK ====== */
.book {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  grid-auto-flow: dense;
  gap: 12px;
}
.book .ph { transition: transform .4s; cursor: zoom-in; }
.book .ph:hover { transform: scale(.98); }
.book .tall { grid-row: span 2; }
.book .wide { grid-column: span 2; }
@media (max-width: 820px) {
  .book { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, .92);
  display: none;
  place-items: center;
  padding: 24px;
  cursor: zoom-out;
}
.lightbox.is-open { display: grid; }
.lightbox .ph { width: min(1100px, 100%); height: min(85vh, 900px); background: none; }
.lightbox .ph > img { object-fit: contain; }

/* ====== STYLES ====== */
.styles { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.style-card {
  position: relative;
  aspect-ratio: 3 / 4;
  display: flex;
  align-items: flex-end;
  padding: 24px;
}
.style-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .85), transparent 55%);
  z-index: 1;
}
.style-card > div { position: relative; z-index: 2; }
.style-card h3 { font-family: "Anton", sans-serif; font-size: 1.8rem; text-transform: uppercase; line-height: 1.1; }
.style-card p { font-size: .9rem; color: var(--muted); }

/* ====== COLLABORATIONS ====== */
.collabs { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; }
.collab {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.collab .ph { aspect-ratio: 16 / 10; border-radius: 0; }
.collab__body { padding: 20px 24px 24px; }
.collab__body h3 { font-size: 1.15rem; margin-bottom: 4px; }
.collab__body p { color: var(--muted); font-size: .9rem; }

/* ====== FOOTER / RÉSEAUX ====== */
.footer { border-top: 1px solid var(--line); padding: 64px 0 32px; text-align: center; }
.footer__name { font-family: "Anton", sans-serif; font-size: clamp(2.5rem, 8vw, 5rem); text-transform: uppercase; line-height: 1; }
.footer__name span { color: var(--accent); }
.socials { display: flex; justify-content: center; gap: 12px; margin: 28px 0 40px; flex-wrap: wrap; }
.social {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 600;
  transition: border-color .2s, background .2s;
}
.social svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.social:hover { border-color: var(--accent); background: rgba(255, 61, 127, .1); }
.social.is-soon { opacity: .45; pointer-events: none; }
.social small { font-weight: 400; font-size: .75rem; color: var(--muted); }
.footer__copy { font-size: .8rem; color: var(--muted); }
.footer__credit { margin-top: 10px; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255, 255, 255, .35); }
.footer__credit strong { color: rgba(255, 255, 255, .6); font-weight: 600; }
.footer__credit a strong { transition: color .2s; }
.footer__credit a:hover strong { color: var(--accent); }
.footer__zone { margin-top: 10px; font-size: .9rem; color: var(--muted); }

/* Texte lu par Google et les lecteurs d'écran, mais invisible à l'écran */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.footer__links { display: flex; justify-content: center; gap: 24px; margin-bottom: 16px; font-size: .9rem; color: var(--muted); }
.footer__links a:hover { color: #fff; }

/* ====== BOUTIQUE ====== */
.shop-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; }
.product {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.product .ph { aspect-ratio: 1; border-radius: 0; }
.product__body { padding: 20px 24px 24px; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.product__body h3 { font-size: 1.1rem; }
.product__body p { color: var(--muted); font-size: .85rem; }
.badge {
  flex-shrink: 0;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  color: var(--accent);
}
.notify {
  margin-top: 64px;
  padding: clamp(32px, 6vw, 56px);
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: center;
}
.notify .lead { margin: 0 auto 24px; }

/* ====== RÉSERVATION ====== */
.booking { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; }
@media (max-width: 900px) { .booking { grid-template-columns: 1fr; } }

.card {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(20px, 4vw, 32px);
}
.card h2 { font-size: 1.3rem; margin-bottom: 20px; display: flex; align-items: center; gap: 12px; }
.card h2 .step {
  display: grid; place-items: center;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--accent);
  font-size: .85rem;
}

/* Calendrier */
.cal__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.cal__head strong { text-transform: capitalize; font-size: 1.05rem; }
.cal__nav {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: none;
  color: #fff;
  cursor: pointer;
  font-size: 1.1rem;
}
.cal__nav:hover:not(:disabled) { border-color: #fff; }
.cal__nav:disabled { opacity: .3; cursor: default; }
.cal__grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; text-align: center; }
.cal__dow { font-size: .75rem; color: var(--muted); padding: 6px 0; text-transform: uppercase; }
.cal__day {
  aspect-ratio: 1;
  border-radius: 10px;
  border: none;
  background: rgba(255, 255, 255, .04);
  color: #fff;
  font-family: inherit;
  font-size: .95rem;
  cursor: pointer;
  transition: background .15s;
}
.cal__day:hover:not(:disabled) { background: rgba(255, 255, 255, .12); }
.cal__day:disabled { opacity: .2; cursor: default; background: none; }
.cal__day.is-today { outline: 1px solid rgba(255, 255, 255, .4); }
.cal__day.is-selected { background: var(--accent); }
.cal__legend { margin-top: 12px; font-size: .8rem; color: var(--muted); }

.slots { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 20px; }

/* Cases / pastilles */
.chips { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 10px; }
.chip { position: relative; }
.chip input { position: absolute; opacity: 0; pointer-events: none; }
.chip span {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
  font-weight: 600;
  font-size: .95rem;
  transition: border-color .15s, background .15s;
}
.chip span::before {
  content: "";
  width: 18px; height: 18px;
  flex-shrink: 0;
  border-radius: 5px;
  border: 2px solid rgba(255, 255, 255, .4);
  transition: background .15s, border-color .15s;
}
.chip input[type="radio"] + span::before { border-radius: 50%; }
.chip input:checked + span { border-color: var(--accent); background: rgba(255, 61, 127, .1); }
.chip input:checked + span::before {
  background: var(--accent) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='white' stroke-width='3' d='M5 12l5 5 9-10'/%3E%3C/svg%3E") center / 12px no-repeat;
  border-color: var(--accent);
}
.chip input:focus-visible + span { outline: 2px solid #fff; outline-offset: 2px; }
.chips.slots-chips { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 480px) { .chips.slots-chips { grid-template-columns: 1fr; } }

/* Champs */
.field { margin-bottom: 16px; }
.field label { display: block; font-size: .85rem; font-weight: 600; margin-bottom: 6px; }
.field input, .field textarea, .field select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--bg);
  color: #fff;
  font-family: inherit;
  font-size: 1rem;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--accent); }
.field textarea { min-height: 120px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 520px) { .field-row { grid-template-columns: 1fr; } }

/* Tarifs */
.prices { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
.price {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
}
.price.is-featured { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent); }
.price h3 { font-size: 1.1rem; margin-bottom: 8px; }
.price__amount { font-family: "Anton", sans-serif; font-size: 2.8rem; line-height: 1.1; }
.price__amount small { font-family: "Inter", sans-serif; font-size: .9rem; color: var(--muted); font-weight: 400; }
.price ul { list-style: none; margin-top: 16px; color: var(--muted); font-size: .92rem; }
.price li { padding: 6px 0; border-top: 1px solid var(--line); }
.price li::before { content: "✓  "; color: var(--accent); }

/* Conditions */
.terms { display: grid; gap: 12px; }
.terms details {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0 24px;
}
.terms summary {
  padding: 18px 0;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
}
.terms summary::-webkit-details-marker { display: none; }
.terms summary::after { content: "+"; color: var(--accent); font-size: 1.3rem; line-height: 1; }
.terms details[open] summary::after { content: "–"; }
.terms details > div { padding-bottom: 20px; color: var(--muted); font-size: .95rem; }
.terms ul { padding-left: 20px; }
.terms li { margin-bottom: 6px; }

.submit-bar { margin-top: 24px; display: flex; flex-direction: column; gap: 16px; align-items: flex-start; }
.form-error { color: #ff7a9c; font-size: .9rem; min-height: 1.2em; }
.form-success {
  display: none;
  padding: 20px;
  border-radius: 12px;
  background: rgba(61, 255, 150, .08);
  border: 1px solid rgba(61, 255, 150, .35);
}

/* ====== Animations ====== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s, transform .8s; }
.reveal.is-visible { opacity: 1; transform: none; }

@keyframes zoom { to { transform: scale(1); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: none; } }
@keyframes scrollDot { 0% { opacity: 1; top: 8px; } 100% { opacity: 0; top: 22px; } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero__bg, .hero__tag, .hero__name, .hero__sub { animation: none; opacity: 1; transform: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
