:root {
  --ink: #f2f0e8;
  --muted: #c3c2b8;
  --dark: #292929;
  --panel: #1a1d1a;
  --panel-soft: #24261f;
  --line: rgba(242, 240, 232, .15);
  --mint: #b8d0c8;
  --gold: #d5b779;
  --amber: #a46b42;
  --paper: #f2eee4;
  --paper-ink: #20231f;
  --shadow: 0 18px 55px rgba(0, 0, 0, .34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 112px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--dark);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 4px;
}

button,
input {
  font: inherit;
}

.topbar {
  position: fixed;
  z-index: 20;
  inset: 0 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 18px 14px;
  background: rgba(12, 13, 12, .72);
  border-bottom: 1px solid rgba(242, 240, 232, .12);
  backdrop-filter: blur(16px);
}

.brand {
  display: grid;
  min-width: 0;
  gap: 4px;
  text-transform: uppercase;
}

.brand span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .14em;
}

.nav {
  display: none;
}

.brand small {
  display: block;
  overflow: hidden;
  color: var(--muted);
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: "Abel", Inter, ui-sans-serif, system-ui, sans-serif;
  font-weight: 300;
  font-size: .58rem;
  letter-spacing: .18em;
}

.brand-phone {
  text-decoration: none;
  -webkit-text-decoration: none;
}

.book,
.ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 0;
  font-weight: 850;
  letter-spacing: .06em;
  text-align: center;
  text-transform: uppercase;
  font-size: .76rem;
  cursor: pointer;
}

.book {
  background: var(--mint);
  color: #101816;
  box-shadow: 0 14px 34px rgba(184, 208, 200, .18);
}

.ghost {
  border: 1px solid rgba(242, 240, 232, .28);
  color: var(--ink);
  background: rgba(242, 240, 232, .04);
}

.book-small {
  width: auto;
  min-height: 32px;
  padding-inline: 18px;
  font-size: .7rem;
}

.topbar .book-small,
.hero-actions .book {
  background: #7fa4a2;
  color: #111312;
}

.hero-actions .ghost {
  border-color: #7fa4a2;
  color: #7fa4a2;
}

.hero {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 62px 0 0;
  background: var(--dark);
}

.hero-media {
  position: relative;
  width: 100%;
  height: clamp(540px, 132vw, 620px);
  min-height: 0;
  overflow: hidden;
  background-image: url("assets/portrait-mobile-hero.png");
  background-image: image-set(
    url("assets/portrait-mobile-hero.jpg") type("image/jpeg"),
    url("assets/portrait-mobile-hero.png") type("image/png")
  );
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  transform: translateZ(0);
}

.hero-media::before {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 82%;
  width: clamp(178px, 48vw, 275px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(238, 250, 255, .98) 0%, rgba(250, 254, 255, .9) 16%, rgba(255, 232, 176, .68) 39%, rgba(255, 184, 86, .26) 66%, rgba(255, 210, 124, 0) 82%);
  filter: blur(5px);
  opacity: .86;
  transform: translate(-50%, -50%) scale(.9);
  animation: lampPulse 2.8s ease-in-out infinite;
  pointer-events: none;
}

.hero-media::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: auto 0 0;
  height: 36%;
  background: linear-gradient(180deg, rgba(17, 19, 18, 0), rgba(17, 19, 18, .7));
  pointer-events: none;
}

.hero-overlay {
  display: none;
  pointer-events: none;
}

.hero-title {
  position: absolute;
  z-index: 3;
  left: 16px;
  right: 16px;
  bottom: clamp(12px, 7vw, 34px);
  max-width: 13ch;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.78rem, 8.6vw, 2.55rem);
  line-height: 1.12;
  font-weight: 700;
  text-shadow:
    0 1px 1px rgba(0, 0, 0, .42),
    0 4px 12px rgba(0, 0, 0, .34),
    0 0 20px rgba(0, 0, 0, .24);
  text-wrap: balance;
}

@keyframes lampPulse {
  0%, 100% {
    opacity: .72;
    transform: translate(-50%, -50%) scale(.92);
  }
  48% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.2);
  }
}

.hero-title span {
  color: var(--gold);
  font-style: italic;
  white-space: nowrap;
}

.hero-content {
  position: relative;
  display: grid;
  gap: 18px;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  padding: 38px 24px 38px;
  background:
    linear-gradient(180deg, rgba(17, 19, 18, 0), var(--dark) 18%),
    var(--dark);
}

.eyebrow {
  margin: 0;
  color: var(--gold);
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: .68rem;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.55rem, 14vw, 4.25rem);
  line-height: .95;
  font-weight: 700;
  text-wrap: balance;
}

.lead {
  margin-bottom: 0;
  color: #f6f4ee;
  font-family: "Source Sans 3", Inter, ui-sans-serif, system-ui, sans-serif;
  font-weight: 200;
  letter-spacing: .018em;
  font-size: 1.32rem;
  line-height: 1.68;
}

.lead .fraunces-gold {
  color: var(--gold);
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-weight: 500;
}

.lead-line {
  display: block;
}

.lead .lead-section-break {
  margin-top: 1.18em;
}

.lead .client-quote {
  margin: 1.18em 0;
}

.lead .pure-white {
  color: #ffffff;
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-weight: 500;
}

.lead .photo-blue {
  display: block;
  margin-top: .2em;
  color: #7fa4a2;
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-weight: 600;
  font-style: italic;
}

.lead .photo-blue-inline {
  display: block;
  margin-top: .2em;
  color: #7fa4a2;
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-weight: 600;
  font-style: italic;
}

.hero-actions {
  display: grid;
  gap: 22px;
  margin-top: 20px;
}

.pricing-summary {
  display: grid;
  max-width: 1040px;
  margin: 32px auto 0;
  color: #f6f4ee;
  font-family: "Source Sans 3", Inter, ui-sans-serif, system-ui, sans-serif;
  font-weight: 200;
  letter-spacing: .018em;
}

#seances-tarifs {
  scroll-margin-top: 180px;
}

.hero > .pricing-summary {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 38px 24px;
  background: var(--dark);
}

.pricing-photo {
  position: relative;
  z-index: 3;
  width: 100%;
  margin: 0;
  aspect-ratio: 2.4 / 1;
  overflow: hidden;
  background: #111312;
}

.pricing-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pricing-summary h2 {
  margin: 0 0 10px;
  color: #ffffff;
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-size: 2.44rem;
  font-weight: 500;
  letter-spacing: .03em;
}

.pricing-summary > div {
  padding: 22px 0;
  border-top: 1px solid rgba(242, 240, 232, .16);
}

.pricing-summary > div:last-child {
  border-bottom: 1px solid rgba(242, 240, 232, .16);
}

.pricing-line {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: baseline;
  margin: 0;
}

.pricing-line span {
  min-width: 0;
  color: #fffaf2;
  font-size: 1.32rem;
}

.pricing-title-italic {
  font-style: italic;
}

.pricing-summary strong {
  color: var(--gold);
  font-family: "Source Sans 3", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 1.16rem;
  font-weight: 200;
  white-space: nowrap;
}

.pricing-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(100%, 250px);
  gap: 10px;
  margin-top: 20px;
  margin-left: 0;
}

.pricing-more,
.pricing-book {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  min-width: 0;
  padding: 0 5px;
  border-radius: 999px;
  color: #111312;
  font-family: "Source Sans 3", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-align: center;
  text-transform: uppercase;
}

.pricing-more {
  border: 0;
  background: #7fa4a2;
  cursor: pointer;
}

.pricing-book {
  background: var(--gold);
}

.pricing-info {
  margin-top: 18px;
  color: rgba(255, 250, 242, .88);
  font-family: "Source Sans 3", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 1.08rem;
  font-weight: 300;
  letter-spacing: .018em;
  line-height: 1.62;
}

.pricing-info p {
  margin: 0;
}

.pricing-info p + p {
  margin-top: .8em;
}

.booking-stage,
.client-access {
  padding: 76px 24px;
}

.full-bleed-photo {
  margin: 0;
  width: 100%;
}

.full-bleed-photo img {
  display: block;
  width: 100%;
  height: auto;
}

.booking-stage {
  background: #4d6270;
}

.booking-stage .section-head .lead,
.booking-stage .session-copy p {
  color: #fffaf2;
}

.client-access {
  background: #0e1110;
}

.client-access .section-head h1,
.client-access .section-head h2 {
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-size: 2.44rem;
  font-weight: 500;
}

.client-access .section-head .lead {
  color: #f6f4ee;
}

.section-head {
  max-width: 760px;
  margin: 0 auto 36px;
  text-align: left;
}

.section-head h2 {
  margin-bottom: 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 8.8vw, 3rem);
  line-height: 1.06;
  text-wrap: balance;
}

.heading-italic {
  display: block;
  font-style: italic;
}

.studio-hypnose {
  color: var(--gold);
  font-style: italic;
}

.booking-stage .section-head h2 {
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-size: 2.44rem;
}

.section-head p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.65;
}

.section-head .lead {
  max-width: 680px;
  margin: 0;
  color: #f6f4ee;
  text-align: left;
}

.hero-content > .lead,
.booking-stage .section-head > .lead {
  font-size: 1.45rem;
  line-height: 1.68;
}

.section-lead-break {
  display: block;
  margin-top: 1.18em;
}

@media (max-width: 639px) {
  .lead {
    font-size: 1.32rem;
    line-height: 1.68;
  }

  .section-head p:not(.eyebrow),
  .session-copy p,
  .footer span {
    font-size: 1.06rem;
    line-height: 1.68;
  }

  .pricing-info {
    font-size: 1.04rem;
    line-height: 1.62;
  }

  .studio-offer .session-kicker {
    font-size: 1rem;
  }

  .session-copy #session-title {
    font-size: 1.65rem;
  }

  .studio-audio-caption {
    font-size: .74rem;
  }

  .studio-subscribe {
    font-size: .78rem;
  }

  .studio-payment > span {
    font-size: .66rem;
  }
}

.session-focus {
  position: relative;
  display: grid;
  gap: 26px;
  max-width: 1040px;
  margin: 0 auto;
  padding: 26px 22px;
  overflow: hidden;
  border: 1px solid rgba(210, 228, 236, .3);
  border-radius: 8px;
  background: #395361;
  box-shadow: var(--shadow);
}

.pulse-rings {
  position: absolute;
  right: -46px;
  top: 24px;
  width: 178px;
  height: 178px;
  opacity: .42;
  pointer-events: none;
}

.pulse-rings-secondary {
  right: auto;
  left: -46px;
  top: 62px;
}

.pulse-rings span {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(213, 183, 121, .58);
  border-radius: 999px;
  animation: pulse 3.6s infinite ease-out;
}

.pulse-rings span:nth-child(2) {
  animation-delay: .8s;
}

.pulse-rings span:nth-child(3) {
  animation-delay: 1.6s;
}

@keyframes pulse {
  0% {
    transform: scale(.45);
    opacity: .8;
  }
  100% {
    transform: scale(1.22);
    opacity: 0;
  }
}

.session-copy {
  position: relative;
}

.session-focus .session-copy h3 {
  margin-bottom: 13px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(242, 240, 232, .34);
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 7vw, 2.35rem);
  font-style: italic;
  line-height: 1.08;
}

.session-copy .session-kicker {
  margin: 0 0 7px;
  color: #dcebe5;
  font-family: "Abel", "Source Sans 3", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: .74rem;
  font-weight: 400;
  letter-spacing: .14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.session-copy #session-title {
  font-size: clamp(1.35rem, 6vw, 1.9rem);
}

.session-copy p {
  color: var(--muted);
  font-family: "Source Sans 3", Inter, ui-sans-serif, system-ui, sans-serif;
  font-weight: 200;
  letter-spacing: .018em;
  line-height: 1.65;
}

.studio-access {
  display: grid;
  justify-items: center;
  gap: 26px;
  margin-top: 30px;
}

.studio-offer {
  display: grid;
  justify-items: center;
  text-align: center;
}

.audio-wave {
  display: flex;
  width: min(100%, 154px);
  height: 34px;
  align-items: center;
  justify-content: center;
  gap: 3px;
  margin: 13px auto 2px;
}

.audio-wave span {
  width: 2px;
  height: 16px;
  border-radius: 999px;
  background: rgba(235, 208, 153, .88);
  box-shadow: 0 0 7px rgba(235, 208, 153, .35);
  animation: audioWave 1.2s ease-in-out infinite;
}

.audio-wave span:nth-child(3n + 1) { height: 11px; }
.audio-wave span:nth-child(3n + 2) { height: 24px; }
.audio-wave span:nth-child(4n) { height: 18px; }
.audio-wave span:nth-child(1) { animation-delay: -.95s; }
.audio-wave span:nth-child(2) { animation-delay: -.62s; }
.audio-wave span:nth-child(3) { animation-delay: -.35s; }
.audio-wave span:nth-child(4) { animation-delay: -.78s; }
.audio-wave span:nth-child(5) { animation-delay: -.16s; }
.audio-wave span:nth-child(6) { animation-delay: -.52s; }
.audio-wave span:nth-child(7) { animation-delay: -.88s; }
.audio-wave span:nth-child(8) { animation-delay: -.27s; }
.audio-wave span:nth-child(9) { animation-delay: -.69s; }
.audio-wave span:nth-child(10) { animation-delay: -.08s; }
.audio-wave span:nth-child(11) { animation-delay: -.43s; }
.audio-wave span:nth-child(12) { animation-delay: -.82s; }
.audio-wave span:nth-child(13) { animation-delay: -.21s; }
.audio-wave span:nth-child(14) { animation-delay: -.57s; }
.audio-wave span:nth-child(15) { animation-delay: -.12s; }
.audio-wave span:nth-child(16) { animation-delay: -.73s; }
.audio-wave span:nth-child(17) { animation-delay: -.39s; }

@keyframes audioWave {
  0%, 100% {
    opacity: .42;
    transform: scaleY(.45);
  }

  50% {
    opacity: 1;
    transform: scaleY(1.25);
  }
}

.studio-audio-link {
  position: relative;
  display: block;
  width: min(100%, 180px);
  overflow: hidden;
  border: 1px solid rgba(213, 183, 121, .38);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .2);
}

.studio-audio-link img {
  display: block;
  width: 100%;
  height: auto;
}

.studio-audio-caption {
  display: grid;
  min-height: 30px;
  place-items: center;
  padding: 5px 10px;
  background: rgba(12, 18, 23, .9);
  color: #fffaf2;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .045em;
  text-align: center;
  text-transform: uppercase;
}

.studio-subscribe {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 15px;
  border-radius: 999px;
  background: var(--gold);
  color: #21190c;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.studio-payment {
  display: grid;
  width: 240px;
  max-width: 100%;
  justify-items: center;
  gap: 6px;
  margin-top: 24px;
}

.studio-payment > span {
  color: rgba(255, 250, 242, .72);
  font-family: "Source Sans 3", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: .58rem;
  font-weight: 300;
  letter-spacing: .035em;
}

.cb-badge {
  display: inline-grid;
  min-width: 23px;
  min-height: 14px;
  place-items: center;
  border: 1px solid rgba(33, 25, 12, .58);
  border-radius: 3px;
  font-size: .48rem;
  font-weight: 800;
  letter-spacing: .04em;
}

.account-shell {
  display: grid;
  gap: 28px;
  max-width: 1120px;
  margin: 30px auto 0;
}

.account-form {
  display: grid;
  max-width: 460px;
  margin: 0 auto;
  padding: 28px 24px;
  border: 1px solid rgba(184, 208, 200, .3);
  border-radius: 8px;
  background: #151b19;
  box-shadow: var(--shadow);
}

.account-form {
  gap: 20px;
}

.account-fields,
.account-field {
  display: grid;
  gap: 8px;
}

.account-fields {
  gap: 16px;
}

.account-field label {
  color: #dcebe5;
  font-family: "Source Sans 3", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: .92rem;
  font-weight: 600;
}

.account-field input {
  min-height: 52px;
  font-family: "Source Sans 3", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 1rem;
}

.account-submit,
.account-continue {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: var(--gold);
  color: #21190c;
  font-family: "Abel", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: .8rem;
  font-weight: 400;
  letter-spacing: .16em;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
}

.account-help {
  margin: 0;
  color: rgba(255, 250, 242, .72);
  font-family: "Source Sans 3", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: .86rem;
  font-weight: 300;
  line-height: 1.55;
  text-align: center;
}

.account-error {
  margin: 0;
  color: #ffd6c0;
  font-family: "Source Sans 3", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: .94rem;
  line-height: 1.45;
  text-align: center;
}

.account-submit:disabled {
  cursor: wait;
  opacity: .72;
}

.client-login-page {
  background: #0e1110;
}

.client-login-topbar {
  grid-template-columns: minmax(0, 1fr);
}

.client-access.client-login-section {
  display: grid;
  min-height: 100svh;
  align-content: center;
  padding-top: 142px;
  padding-bottom: 76px;
}

.client-login-section .section-head {
  max-width: 520px;
  margin-right: auto;
  margin-left: auto;
}

.client-dashboard {
  min-height: 100vh;
  padding: 132px 24px 76px;
  background: #0e1110;
}

.client-dashboard > h1,
.client-status,
.client-dashboard > .lead,
.client-dashboard > .client-booking-actions,
.client-dashboard-panel {
  max-width: 520px;
  margin-right: auto;
  margin-left: auto;
}

.client-dashboard h1 {
  margin-bottom: 18px;
  color: #fffaf2;
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-size: 2.44rem;
  font-weight: 500;
}

.client-dashboard h1 span {
  color: var(--gold);
  font-style: italic;
}

.client-status {
  margin-top: 22px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 250, 242, .32);
  color: rgba(255, 250, 242, .68);
  font-family: "Abel", Arial, sans-serif;
  font-size: .72rem;
  font-weight: 400;
  letter-spacing: .16em;
}

.client-dashboard > .lead {
  margin-top: 30px;
}

.client-booking-actions {
  display: grid;
  gap: 16px;
  margin-top: 20px;
  margin-bottom: 8px;
}

.client-booking-actions a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 8px 18px;
  border: 1px solid rgba(220, 193, 143, .72);
  border-radius: 999px;
  color: var(--gold);
  font-family: "Abel", Arial, sans-serif;
  font-size: .76rem;
  font-weight: 400;
  letter-spacing: .13em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.client-booking-actions a:last-child {
  border-color: transparent;
  background: var(--gold);
  color: #21190c;
}

.client-dashboard-panel {
  display: grid;
  gap: 14px;
  margin-top: 40px;
  padding: 28px 24px;
  border: 1px solid rgba(184, 208, 200, .3);
  border-radius: 8px;
  background: #151b19;
  box-shadow: var(--shadow);
}

.client-dashboard-panel h2,
.client-dashboard-panel p {
  margin: 0;
}

.client-dashboard-panel h2 {
  color: #fffaf2;
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
  font-weight: 500;
}

.client-dashboard-panel p:not(.eyebrow) {
  color: rgba(255, 250, 242, .82);
  font-family: "Source Sans 3", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.6;
}

.appointment-panel {
  gap: 22px;
}

.appointment-details {
  display: grid;
  margin: 0;
  border-top: 1px solid rgba(255, 250, 242, .16);
}

.appointment-details > div {
  display: grid;
  grid-template-columns: minmax(88px, .72fr) minmax(0, 1.28fr);
  gap: 16px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 250, 242, .12);
}

.appointment-details dt {
  color: rgba(255, 250, 242, .62);
  font-family: "Abel", Arial, sans-serif;
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.appointment-details dd {
  margin: 0;
  color: #fffaf2;
  font-family: "Source Sans 3", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 1.08rem;
  font-weight: 300;
  line-height: 1.45;
  text-align: right;
}

.appointment-details .appointment-price {
  color: var(--gold);
  font-family: "Source Sans 3", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 1.08rem;
  font-weight: 300;
}

.appointment-access-panel {
  gap: 16px;
}

.appointment-access-panel p {
  margin: 0;
  color: rgba(255, 250, 242, .88);
}

.appointment-access-guide {
  width: min(188px, 58%);
  margin: 2px 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 250, 242, .14);
  border-radius: 4px;
  background: #0c0e0d;
  cursor: zoom-in;
}

.appointment-access-guide img {
  display: block;
  width: 100%;
  height: auto;
}

.access-guide-dialog {
  width: min(92vw, 620px);
  max-height: 90svh;
  margin: auto;
  padding: 0;
  overflow: visible;
  border: 1px solid rgba(255, 250, 242, .22);
  border-radius: 4px;
  background: #0c0e0d;
}

.access-guide-dialog::backdrop {
  background: rgba(0, 0, 0, .78);
}

.access-guide-dialog img {
  display: block;
  width: 100%;
  max-height: 90svh;
  object-fit: contain;
}

.access-guide-close {
  position: absolute;
  top: 8px;
  right: 8px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(255, 250, 242, .35);
  border-radius: 50%;
  background: rgba(12, 14, 13, .82);
  color: #fffaf2;
  font-family: Arial, sans-serif;
  font-size: 1.55rem;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
}

.appointment-access-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  justify-self: start;
  border: 1px solid rgba(220, 193, 143, .72);
  border-radius: 999px;
  color: var(--gold);
  font-family: "Abel", Arial, sans-serif;
  font-size: .76rem;
  letter-spacing: .14em;
  text-decoration: none;
  text-transform: uppercase;
}

.session-guidance {
  gap: 20px;
}

.session-guidance-heading {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
}

.notice-required {
  flex: 0 0 auto;
  padding: 5px 9px;
  border: 1px solid rgba(220, 193, 143, .62);
  border-radius: 999px;
  color: var(--gold);
  font-family: "Abel", Arial, sans-serif;
  font-size: .64rem;
  font-weight: 400;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.session-guidance-intro {
  margin: 0;
  color: rgba(255, 250, 242, .9);
}

.notice-questionnaire-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--gold);
  color: #21190c;
  font-family: "Abel", Arial, sans-serif;
  font-size: .76rem;
  font-weight: 400;
  letter-spacing: .14em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.audio-panel {
  gap: 20px;
  border-color: rgba(123, 174, 192, .42);
  background: #101c2d;
}

.audio-panel-copy {
  display: grid;
  gap: 22px;
}

.audio-panel-copy p {
  margin: 0;
}

.audio-panel-copy p + p {
  padding-top: 22px;
  border-top: 1px solid rgba(255, 250, 242, .16);
}

.audio-artwork {
  width: min(300px, 100%);
  aspect-ratio: 1;
  margin: 4px auto;
  overflow: hidden;
  border: 1px solid rgba(220, 193, 143, .42);
  border-radius: 8px;
  background: #081224;
  box-shadow: 0 16px 38px rgba(0, 0, 0, .32);
}

.audio-artwork img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

label {
  color: var(--mint);
  font-weight: 800;
}

input {
  width: 100%;
  min-height: 54px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0d1110;
  color: var(--ink);
}

.footer {
  display: grid;
  gap: 14px;
  padding: 28px 16px;
  background: #090b0a;
  color: var(--muted);
}

.footer div {
  display: grid;
  gap: 4px;
}

.footer strong {
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: .14em;
}

@media (min-width: 560px) {
  .hero {
    padding-top: 66px;
  }

  .hero-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

@media (min-width: 760px) {
  .topbar {
    grid-template-columns: minmax(190px, 1fr) auto;
    padding: 24px 32px;
  }

  .brand small {
    display: block;
  }

  .brand small {
    overflow: hidden;
    color: var(--muted);
    text-overflow: ellipsis;
    white-space: nowrap;
    font-family: "Abel", Inter, ui-sans-serif, system-ui, sans-serif;
    font-weight: 300;
    font-size: .62rem;
    letter-spacing: .22em;
  }

  .hero {
    min-height: 92vh;
    display: grid;
    align-items: end;
    padding: 128px 46px 56px;
  }

  .hero-media,
  .hero-overlay {
    position: absolute;
    inset: 0;
  }

  .hero-media {
    min-height: 0;
  }

  .hero-media {
    background-position: center 18%;
  }

  .hero-media::before {
    left: 54%;
    top: 79%;
    width: clamp(160px, 22vw, 250px);
  }

  .hero-overlay {
    display: block;
    background:
      linear-gradient(90deg, rgba(17, 19, 18, .88) 0%, rgba(17, 19, 18, .58) 44%, rgba(17, 19, 18, .08) 100%),
      linear-gradient(180deg, rgba(17, 19, 18, .08), #111312 96%);
  }

  .hero-content {
    max-width: 560px;
    margin: 0;
    padding: 0;
    background: transparent;
  }

  .hero-title {
    left: auto;
    right: 46px;
    bottom: 40px;
    max-width: 12ch;
    font-size: clamp(2.25rem, 4.7vw, 3.8rem);
  }

  .hero-actions {
    display: flex;
    flex-wrap: wrap;
  }

  .book,
  .ghost {
    width: auto;
  }

  .booking-stage,
  .client-access {
    padding: 108px 36px;
  }

  .section-head {
    text-align: center;
  }

  .session-focus {
    grid-template-columns: minmax(0, 1fr) minmax(250px, .58fr);
    gap: 36px;
    padding: 44px;
  }

  .pulse-rings {
    right: 6%;
    top: 50%;
    width: 230px;
    height: 230px;
    transform: translateY(-50%);
  }

  .pulse-rings-secondary {
    right: auto;
    left: 4%;
    top: 58%;
  }

  .portal {
    grid-template-columns: 290px minmax(0, 1fr);
    gap: 18px;
  }

  .footer {
    grid-template-columns: 1fr auto;
    align-items: center;
    padding-inline: 36px;
  }
}

@media (min-width: 1040px) {
  .topbar {
    grid-template-columns: minmax(210px, 1fr) auto auto auto;
    padding-inline: 54px;
  }

  .nav {
    display: flex;
    gap: 18px;
    color: var(--muted);
    font-size: .84rem;
  }

  .nav a:hover {
    color: var(--ink);
  }

  .hero {
    padding-inline: 72px;
  }

  .hero-media {
    background-size: min(58vw, 760px) auto;
    background-position: right 10% top;
    background-repeat: no-repeat;
    background-color: #111312;
  }

  .hero-media::before {
    left: 70%;
    top: 78%;
  }

  .hero-title {
    right: clamp(72px, 8vw, 128px);
    bottom: 50px;
  }

  .hero-overlay {
    background:
      radial-gradient(circle at 75% 34%, rgba(213, 183, 121, .14), transparent 28%),
      linear-gradient(90deg, #111312 0%, rgba(17, 19, 18, .92) 38%, rgba(17, 19, 18, .46) 72%, #111312 100%),
      linear-gradient(180deg, transparent 0%, #111312 100%);
  }

  h1 {
    font-size: clamp(4.8rem, 7.4vw, 6.7rem);
  }

  .lead {
    max-width: 590px;
    font-size: 1.32rem;
  }

}

/* On desktop, preserve the deliberately vertical, mobile-first reading flow. */
@media (min-width: 760px) {
  body {
    background: #161918;
  }

  main,
  .footer {
    width: min(100%, 720px);
    margin-inline: auto;
    box-shadow: 0 0 56px rgba(0, 0, 0, .22);
  }

  .topbar {
    inset: 0 auto auto 50%;
    width: min(100%, 720px);
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 18px 14px;
    transform: translateX(-50%);
  }

  .topbar .nav {
    display: none;
  }

  .hero {
    display: block;
    min-height: 0;
    padding: 62px 0 0;
  }

  .hero-media {
    position: relative;
    height: 620px;
    background-color: transparent;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .hero-media::before {
    left: 50%;
    top: 82%;
    width: 275px;
  }

  .hero-overlay {
    display: none;
  }

  .hero-content {
    max-width: 520px;
    margin: 0 auto;
    padding: 38px 24px;
    background:
      linear-gradient(180deg, rgba(17, 19, 18, 0), var(--dark) 18%),
      var(--dark);
  }

  .hero-title {
    left: 16px;
    right: 16px;
    bottom: 34px;
    max-width: 13ch;
    font-size: 2.55rem;
  }

  .booking-stage,
  .client-access {
    padding: 76px 24px;
  }

  .section-head {
    text-align: left;
  }

  .session-focus {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 26px 22px;
  }

  .pulse-rings {
    right: -46px;
    top: 24px;
    width: 178px;
    height: 178px;
    transform: none;
  }

  .pulse-rings-secondary {
    right: auto;
    left: -46px;
    top: 62px;
  }

  .portal {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .footer {
    grid-template-columns: 1fr;
    padding: 28px 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

/* Catalogue des seances a la carte */
.catalog-auth-status {
  display: none;
}

.catalog-protected.auth-pending .topbar,
.catalog-protected.auth-pending .catalog-page {
  visibility: hidden;
}

.catalog-protected.auth-pending .catalog-auth-status {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: grid;
  place-items: center;
  padding: 24px;
  color: rgba(255, 250, 242, .82);
  background: var(--dark);
  font-family: "Abel", "Source Sans 3", Inter, sans-serif;
  font-size: .92rem;
  letter-spacing: .12em;
  text-align: center;
  text-transform: uppercase;
}

.catalog-page {
  min-height: 100vh;
  padding: 128px 24px 76px;
  background:
    radial-gradient(110% 74% at 26% 0%, #394846 0%, rgba(57, 72, 70, 0) 55%),
    var(--dark);
}

.catalog-shell {
  width: min(100%, 560px);
  margin: 0 auto;
}

.catalog-back {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  color: rgba(242, 240, 232, .76);
  font-family: "Abel", Inter, sans-serif;
  font-size: .82rem;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.catalog-intro {
  margin-top: 28px;
}

.catalog-kicker,
.catalog-family-title,
.catalog-meta-label {
  margin: 0;
  font-family: "Abel", Inter, sans-serif;
  font-size: .86rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.catalog-kicker {
  color: rgba(242, 240, 232, .52);
}

.catalog-title {
  margin: 10px 0 0;
  color: var(--ink);
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-size: 2.44rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.06;
}

.catalog-question {
  margin: 26px 0 0;
  color: #f6f4ee;
  font-family: "Source Sans 3", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 1.32rem;
  font-style: normal;
  font-weight: 200;
  letter-spacing: .018em;
  line-height: 1.68;
}

.catalog-entry-gate {
  margin-top: 19px;
}

.catalog-entry-gate p {
  max-width: 38ch;
  margin: 9px 0 0;
  color: rgba(242, 240, 232, .76);
  font-family: "Source Sans 3", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 1.04rem;
  font-weight: 200;
  letter-spacing: .018em;
  line-height: 1.45;
}

.catalog-access-notice {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 2px 8px;
  color: var(--gold);
  border: 1px solid rgba(213, 183, 121, .48);
  border-radius: 999px;
  background: rgba(213, 183, 121, .08);
  font-family: "Abel", Inter, sans-serif;
  font-size: .7rem;
  letter-spacing: .1em;
  line-height: 1.2;
  text-transform: uppercase;
}

.catalog-lead {
  margin: 18px 0 0;
  color: #f6f4ee;
  font-family: "Source Sans 3", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 1.32rem;
  font-weight: 200;
  letter-spacing: .018em;
  line-height: 1.68;
}

.catalog-format-fit {
  margin: 24px 0 0;
  color: var(--gold);
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-size: 1.42rem;
  font-style: italic;
  font-weight: 500;
  line-height: 1.3;
}

.catalog-price-note {
  margin: 18px 0 0;
  color: var(--gold);
  font-family: "Abel", Inter, sans-serif;
  font-size: 1rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.catalog-entry-book {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  margin-top: 15px;
  padding: 0 16px;
  color: #101816;
  background: var(--mint);
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(184, 208, 200, .16);
  font-family: "Abel", Inter, sans-serif;
  font-size: .86rem;
  letter-spacing: .1em;
  text-align: center;
  text-transform: uppercase;
}

.catalog-entry-book:hover {
  background: #d8e9df;
}

.catalog-entry-card-book {
  min-height: 31px;
  margin-top: 13px;
  padding-inline: 11px;
  font-size: .68rem;
  letter-spacing: .075em;
}

.catalog-family {
  margin-top: 52px;
}

.catalog-family-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.catalog-family-bar {
  width: 28px;
  height: 3px;
  background: var(--gold);
}

.catalog-family-bar.sage {
  background: var(--mint);
}

.catalog-family-title {
  color: var(--gold);
}

.catalog-family-title.sage {
  color: var(--mint);
}

.catalog-card {
  display: grid;
  grid-template-columns: clamp(96px, 27%, 132px) minmax(0, 1fr);
  gap: 17px;
  padding: 23px 0;
  border-bottom: 1px solid rgba(242, 240, 232, .16);
}

.catalog-family .catalog-card:first-of-type {
  border-top: 1px solid rgba(242, 240, 232, .16);
}

.catalog-art {
  min-height: 198px;
  overflow: hidden;
  background: #202a29;
  box-shadow: inset 0 0 0 1px rgba(242, 240, 232, .1);
}

.catalog-art img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.catalog-card-body {
  min-width: 0;
}

.catalog-badge {
  display: inline-flex;
  align-items: center;
  min-height: 23px;
  margin-bottom: 9px;
  padding: 2px 9px;
  color: #18201d;
  background: var(--gold);
  border-radius: 999px;
  font-family: "Abel", Inter, sans-serif;
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.catalog-name {
  margin: 0;
  color: var(--ink);
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 6vw, 1.9rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.08;
}

.catalog-price {
  display: block;
  margin-top: 5px;
  color: var(--gold);
  font-family: "Abel", Inter, sans-serif;
  font-size: 1rem;
  letter-spacing: .08em;
}

.catalog-description,
.catalog-objectives,
.catalog-bonus,
.catalog-availability {
  color: rgba(242, 240, 232, .82);
  font-family: "Source Sans 3", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 1.06rem;
  font-weight: 200;
  letter-spacing: .018em;
  line-height: 1.65;
}

.catalog-description,
.catalog-objectives,
.catalog-bonus {
  margin: 12px 0 0;
}

.catalog-meta-label {
  display: block;
  margin-bottom: 2px;
  color: rgba(242, 240, 232, .54);
  font-size: .7rem;
}

.catalog-bonus-label {
  display: inline-block;
  margin-right: 6px;
  padding: 1px 7px;
  color: #15201d;
  background: var(--mint);
  border-radius: 999px;
  font-family: "Abel", Inter, sans-serif;
  font-size: .68rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.catalog-availability {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 13px 0 0;
  color: rgba(242, 240, 232, .72);
  font-family: "Abel", Inter, sans-serif;
  font-size: .88rem;
  letter-spacing: .03em;
}

.catalog-availability::before {
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  background: var(--mint);
  border-radius: 50%;
  content: "";
}

.catalog-book {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 110px;
  min-height: 34px;
  margin-top: 15px;
  padding: 0 14px;
  color: #13201d;
  background: var(--mint);
  border-radius: 999px;
  font-family: "Abel", Inter, sans-serif;
  font-size: .78rem;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.catalog-book:hover {
  background: #d8e9df;
}

.catalog-footer {
  margin-top: 54px;
  padding-top: 25px;
  border-top: 1px solid rgba(242, 240, 232, .16);
  color: rgba(242, 240, 232, .56);
  font-family: "Abel", Inter, sans-serif;
  font-size: .78rem;
  letter-spacing: .1em;
  text-align: center;
  text-transform: uppercase;
}

@media (min-width: 760px) {
  .catalog-page {
    padding-top: 142px;
  }
}

@media (max-width: 390px) {
  .catalog-page {
    padding-inline: 18px;
  }

  .catalog-card {
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 14px;
  }

  .catalog-art {
    min-height: 178px;
  }

  .catalog-name {
    font-size: 1.35rem;
  }

  .catalog-access-notice {
    font-size: .66rem;
  }

  .catalog-description,
  .catalog-objectives,
  .catalog-bonus {
    font-size: .96rem;
  }
}
