:root {
  --bg: #0c060a;
  --surface: #160b12;
  --surface-soft: #21101a;
  --text: #fff8fb;
  --muted: #c9aeb9;
  --accent: #f19abb;
  --accent-strong: #c54f7c;
  --line: rgba(255,255,255,.11);
  --shadow: 0 28px 90px rgba(0,0,0,.45);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 78% 4%, rgba(197,79,124,.18), transparent 32rem),
    radial-gradient(circle at 5% 42%, rgba(241,154,187,.08), transparent 28rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}
body.locked { overflow: hidden; }

a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
img { width: 100%; display: block; }
em {
  color: var(--accent);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-weight: 600;
}

.ambient {
  position: fixed;
  z-index: -1;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .14;
}
.ambient-one { top: 12%; right: -7rem; background: var(--accent-strong); }
.ambient-two { bottom: 8%; left: -8rem; background: var(--accent); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 78px;
  padding: 0 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: rgba(12,6,10,.78);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: .03em;
}
.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(241,154,187,.55);
  border-radius: 50%;
  color: var(--accent);
  font-family: Inter, sans-serif;
  font-size: .72rem;
  letter-spacing: .08em;
}
.site-header nav {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  color: var(--muted);
  font-size: .9rem;
}
.site-header nav a:hover { color: var(--text); }
.header-cta {
  padding: .75rem 1.1rem;
  border: 1px solid rgba(241,154,187,.42);
  border-radius: 999px;
  color: var(--accent);
  font-size: .85rem;
  font-weight: 700;
}
.menu-button {
  display: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .6rem .9rem;
  background: transparent;
  color: var(--text);
}

.hero {
  width: min(1240px, 90vw);
  min-height: calc(100vh - 78px);
  margin: 0 auto;
  padding: 6rem 0 5rem;
  display: grid;
  grid-template-columns: 1.03fr .97fr;
  align-items: center;
  gap: clamp(2rem, 6vw, 7rem);
}
.eyebrow {
  display: inline-block;
  color: var(--accent);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.hero h1,
.section-title h2,
.contact-section h2 {
  margin: .8rem 0 1rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: .93;
}
.hero h1 { font-size: clamp(4.4rem, 10vw, 8.7rem); }
.hero h1 span, .hero h1 em { display: block; }
.hero-text {
  max-width: 38rem;
  margin: 0 0 2rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
}
.hero-actions, .age-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
}
.button {
  min-height: 52px;
  padding: .9rem 1.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button.primary {
  background: linear-gradient(135deg, var(--accent), #ffbad3);
  color: #2a0b16;
  box-shadow: 0 14px 35px rgba(197,79,124,.24);
}
.button.secondary {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.025);
  color: var(--text);
}
.button.large { min-height: 58px; padding-inline: 1.8rem; }

.trust-row {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  color: var(--muted);
  font-size: .82rem;
}

.hero-art { position: relative; }
.photo-shell {
  position: relative;
  overflow: hidden;
  min-height: 650px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 180px 180px 28px 28px;
  background: var(--surface);
  box-shadow: var(--shadow);
}
.photo-shell img {
  height: 650px;
  object-fit: cover;
}
.photo-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 52%, rgba(10,4,8,.78));
  pointer-events: none;
}
.photo-caption {
  position: absolute;
  z-index: 2;
  left: 2rem;
  right: 2rem;
  bottom: 1.6rem;
}
.photo-caption small {
  display: block;
  color: var(--accent);
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.photo-caption strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
}
.floating-note {
  position: absolute;
  z-index: 3;
  padding: .55rem 1rem;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  background: rgba(22,11,18,.82);
  backdrop-filter: blur(12px);
  color: var(--muted);
  font-family: "Cormorant Garamond", Georgia, serif;
}
.note-one { top: 18%; left: -2rem; transform: rotate(-8deg); }
.note-two { right: -1rem; bottom: 18%; transform: rotate(7deg); color: var(--accent); }

.section {
  width: min(1240px, 90vw);
  margin: 0 auto;
  padding: 7rem 0;
}
.section-title { max-width: 750px; margin-bottom: 3rem; }
.section-title h2, .contact-section h2 {
  font-size: clamp(3rem, 7vw, 5.5rem);
}
.section-title p, .split-title > p { color: var(--muted); }
.section-title.centered {
  margin-inline: auto;
  text-align: center;
}
.split-title {
  max-width: none;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 2rem;
}
.split-title > p { max-width: 31rem; margin-bottom: .8rem; }

.about-layout {
  display: grid;
  grid-template-columns: 1.6fr .7fr .7fr;
  gap: 1rem;
}
.glass-card, .mini-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255,255,255,.045), rgba(255,255,255,.018));
}
.about-card { padding: clamp(1.7rem, 4vw, 3.5rem); }
.about-card .lead {
  margin-top: 0;
  color: var(--text);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.15;
}
.about-card > p:not(.lead) { color: var(--muted); }
.social-links { display: flex; gap: 1.4rem; margin-top: 2rem; }
.social-links a { color: var(--accent); font-weight: 700; }
.mini-card {
  min-height: 250px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: end;
}
.mini-card > span { margin-bottom: auto; color: var(--accent); font-size: .8rem; letter-spacing: .16em; }
.mini-card h3 {
  margin: 0 0 .5rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.8rem;
}
.mini-card p { margin: 0; color: var(--muted); font-size: .9rem; }

.preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 1rem;
}
.preview-card {
  position: relative;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
  cursor: pointer;
}
.preview-card img {
  height: 100%;
  object-fit: cover;
  filter: blur(12px) brightness(.66);
  transform: scale(1.07);
  transition: transform .55s ease, filter .55s ease;
}
.preview-card::after {
  content: "18+ • Appuyer pour voir";
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  width: max-content;
  max-width: 82%;
  padding: .65rem .9rem;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  background: rgba(12,6,10,.72);
  color: var(--text);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .04em;
  backdrop-filter: blur(10px);
  pointer-events: none;
}
.preview-card:hover img {
  transform: scale(1.10);
  filter: blur(9px) brightness(.58);
}
.preview-card > span {
  position: absolute;
  inset: auto 1.2rem 1.1rem;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  color: var(--text);
  text-align: left;
  text-shadow: 0 2px 14px rgba(0,0,0,.8);
}
.preview-card strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.5rem;
}
.preview-card small { color: var(--accent); }
.preview-tall { grid-row: span 2; }
.preview-wide { grid-column: span 2; }

.pricing-section { padding-top: 8rem; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.price-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  padding: clamp(1.6rem, 3vw, 2.5rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255,255,255,.045), rgba(255,255,255,.015));
}
.price-card.featured {
  border-color: rgba(241,154,187,.48);
  background:
    radial-gradient(circle at 100% 0%, rgba(241,154,187,.16), transparent 18rem),
    linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.018));
}
.price-card .category-icon { font-size: 1.7rem; }
.price-card h3 {
  margin: .65rem 0 1.25rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.45rem;
}
.price-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.price-list li {
  padding: .9rem 0;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
}
.price-list li:first-child { border-top: 0; }
.price-list strong { color: var(--text); white-space: nowrap; }
.price-benefits {
  margin: 1rem 0 0;
  padding-left: 1.15rem;
  color: var(--muted);
}
.price-benefits li { margin: .5rem 0; }
.card-action {
  width: 100%;
  margin-top: 1.5rem;
}
.popular-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: .35rem .65rem;
  border-radius: 999px;
  background: rgba(241,154,187,.15);
  color: var(--accent);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.consent-notice {
  margin-top: 1.3rem;
  padding: 1.3rem 1.5rem;
  display: flex;
  align-items: baseline;
  gap: 1.2rem;
  border: 1px solid rgba(241,154,187,.22);
  border-radius: 20px;
  background: rgba(241,154,187,.045);
}
.consent-notice strong { color: var(--accent); }
.consent-notice p { margin: 0; color: var(--muted); font-size: .88rem; }

.contact-section {
  width: min(1240px, 90vw);
  margin: 3rem auto 7rem;
  padding: clamp(2rem, 5vw, 4.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border: 1px solid rgba(241,154,187,.27);
  border-radius: 34px;
  background:
    radial-gradient(circle at 100% 50%, rgba(241,154,187,.14), transparent 24rem),
    var(--surface);
}
.contact-section h2 { margin: .45rem 0 .6rem; font-size: clamp(2.6rem, 5vw, 4.4rem); }
.contact-section p { margin: 0; color: var(--muted); }

footer {
  min-height: 130px;
  padding: 2rem 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .82rem;
}
footer p { margin: 0; }

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 1.3rem;
  background: rgba(6,3,5,.92);
  backdrop-filter: blur(16px);
}
.age-gate.hidden { display: none; }
.age-card {
  width: min(520px, 100%);
  padding: clamp(2rem, 6vw, 3.8rem);
  border: 1px solid rgba(241,154,187,.28);
  border-radius: 34px;
  background:
    radial-gradient(circle at 100% 0%, rgba(241,154,187,.17), transparent 20rem),
    #150a11;
  box-shadow: var(--shadow);
  text-align: center;
}
.age-icon {
  width: 84px;
  height: 84px;
  margin: 1.3rem auto;
  display: grid;
  place-items: center;
  border: 1px solid rgba(241,154,187,.48);
  border-radius: 50%;
  color: var(--accent);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.2rem;
  font-weight: 700;
}
.age-card h1 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.3rem, 7vw, 3.5rem);
  line-height: 1;
}
.age-card p { color: var(--muted); }
.age-actions { justify-content: center; margin: 1.6rem 0 1rem; }
.age-card small { color: #987d88; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 900;
  padding: 5vh 5vw;
  display: grid;
  place-items: center;
  background: rgba(5,2,4,.92);
  backdrop-filter: blur(14px);
}
.lightbox[hidden] { display: none; }
.lightbox img {
  width: auto;
  max-width: 92vw;
  max-height: 88vh;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}
.lightbox button {
  position: fixed;
  top: 1.2rem;
  right: 1.5rem;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  font-size: 1.8rem;
}

@media (max-width: 980px) {
  .site-header nav {
    position: absolute;
    top: 78px;
    left: 5vw;
    right: 5vw;
    padding: 1.2rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(22,11,18,.98);
  }
  .site-header nav.open { display: flex; }
  .menu-button { display: block; }
  .header-cta { display: none; }

  .hero {
    padding-top: 4rem;
    grid-template-columns: 1fr;
  }
  .hero-copy { text-align: center; }
  .hero-text { margin-inline: auto; }
  .hero-actions, .trust-row { justify-content: center; }
  .hero-art { width: min(520px, 100%); margin: 0 auto; }

  .about-layout { grid-template-columns: 1fr 1fr; }
  .about-card { grid-column: 1 / -1; }
  .split-title { display: block; }
  .pricing-grid { grid-template-columns: 1fr; }
  footer { flex-direction: column; text-align: center; }
}

@media (max-width: 680px) {
  .site-header { min-height: 68px; }
  .site-header nav { top: 68px; }
  .brand { font-size: 1rem; }
  .brand-mark { width: 34px; height: 34px; }
  .hero { min-height: auto; width: min(92vw, 1240px); }
  .hero h1 { font-size: clamp(4rem, 23vw, 6rem); }
  .photo-shell, .photo-shell img { min-height: 500px; height: 500px; }
  .note-one { left: -.4rem; }
  .note-two { right: -.2rem; }

  .section { width: 92vw; padding: 5.2rem 0; }
  .section-title h2 { font-size: clamp(3rem, 16vw, 4.2rem); }
  .about-layout { grid-template-columns: 1fr; }
  .about-card { grid-column: auto; }

  .preview-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 230px;
  }
  .preview-tall { grid-row: span 2; }
  .preview-wide { grid-column: span 2; }

  .consent-notice, .contact-section {
    flex-direction: column;
    align-items: stretch;
  }
  .contact-section { width: 92vw; text-align: center; }
  .contact-section .button { width: 100%; }
}

@media (max-width: 430px) {
  .preview-grid { grid-template-columns: 1fr; }
  .preview-tall { grid-row: span 1; }
  .preview-wide { grid-column: span 1; }
  .preview-card { min-height: 330px; }
}


/* Cadrages personnalisés des photos intégrées */
.photo-shell img { object-position: center 42%; }
.preview-card:nth-child(1) img { object-position: center 42%; }
.preview-card:nth-child(2) img { object-position: center 48%; }
.preview-card:nth-child(3) img { object-position: center 35%; }
.preview-card:nth-child(4) img { object-position: center 45%; }
.preview-card:nth-child(5) img { object-position: center 52%; }
