:root {
  --ink: #262741;
  --paper: #f8f5f2;
  --white: #ffffff;
  --green: #5b5f9b;
  --green-dark: #272b52;
  --blue: #416ea0;
  --sky: #d9e8f4;
  --coral: #e86445;
  --yellow: #efc768;
  --line: rgba(38, 39, 65, 0.16);
  --shadow: 0 20px 70px rgba(37, 39, 70, 0.14);
  --radius: 28px;
  --serif: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --sans: "Avenir Next", "Segoe UI", Arial, sans-serif;
  --utility: "Trebuchet MS", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 12px 18px;
  color: #fff;
  background: #111;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.concept-switcher {
  position: relative;
  z-index: 50;
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 7px 24px;
  color: #fff;
  background: #242845;
  font-family: var(--utility);
  font-size: 14px;
}

.concept-switcher::-webkit-scrollbar {
  display: none;
}

.concept-switcher p {
  margin: 0 auto 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.concept-switcher nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.concept-switcher a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 5px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  transition: 180ms ease;
}

.concept-switcher a:hover,
.concept-switcher a[aria-current="page"] {
  color: #242845;
  background: #fff;
}

.site-header {
  position: relative;
  z-index: 40;
  display: grid;
  width: min(1440px, calc(100% - 64px));
  min-height: 96px;
  margin: 0 auto;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--utility);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.02em;
}

.brand-mark {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50% 50% 50% 12px;
  color: #fff;
  background: var(--green);
  font-family: var(--serif);
  font-size: 22px;
}

.brand small {
  display: block;
  margin-bottom: 3px;
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.5vw, 40px);
  font-size: 15px;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  padding: 14px 0;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 8px;
  left: 0;
  height: 2px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.phone-link {
  font-family: var(--utility);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: currentColor;
  background: transparent;
  cursor: pointer;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--utility);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.15;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff;
  background: var(--green);
  box-shadow: 0 12px 30px rgba(91, 95, 155, 0.22);
}

.button-secondary {
  color: var(--ink);
  background: var(--yellow);
}

.button-ghost {
  border-color: currentColor;
  color: inherit;
  background: transparent;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--utility);
  font-size: 15px;
  font-weight: 800;
}

.text-link::after {
  content: "→";
  transition: transform 180ms ease;
}

.text-link:hover::after {
  transform: translateX(5px);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--green);
  font-family: var(--utility);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-shell {
  width: min(1240px, calc(100% - 64px));
  margin: 0 auto;
}

.section-heading {
  max-width: 800px;
  margin-bottom: 50px;
}

.section-heading h2 {
  margin: 0 0 20px;
  font-family: var(--serif);
  font-size: clamp(42px, 6vw, 78px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.section-heading p:last-child {
  max-width: 650px;
  margin: 0;
  color: rgba(38, 39, 65, 0.76);
  font-size: 20px;
}

.section-pad {
  padding-top: 120px;
  padding-bottom: 120px;
}

.footer {
  padding: 64px 0 30px;
  color: #fff;
  background: #242845;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 60px;
}

.footer .brand-mark {
  color: var(--green-dark);
  background: #fff;
}

.footer .brand small,
.footer a {
  color: inherit;
}

.footer p {
  color: rgba(255, 255, 255, 0.68);
}

.footer h3 {
  margin: 0 0 12px;
  font-family: var(--utility);
  font-size: 15px;
  text-transform: uppercase;
}

.footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer li + li {
  margin-top: 8px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.54);
  font-size: 13px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* Shared modal */
.media-dialog,
.memory-dialog {
  width: min(880px, calc(100% - 32px));
  max-height: calc(100% - 32px);
  padding: 0;
  overflow: auto;
  border: 0;
  border-radius: 28px;
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.38);
}

.media-dialog::backdrop,
.memory-dialog::backdrop {
  background: rgba(25, 27, 50, 0.82);
  backdrop-filter: blur(8px);
}

.dialog-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
}

.dialog-close {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 14px;
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--ink);
  background: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.dialog-visual {
  position: relative;
  min-height: 480px;
  overflow: hidden;
}

.dialog-visual img {
  height: 100%;
  object-fit: cover;
  object-position: 67% center;
}

.dialog-play {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 84px;
  height: 84px;
  place-items: center;
  border: 8px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  color: var(--green-dark);
  background: #fff;
  transform: translate(-50%, -50%);
}

.dialog-copy {
  align-self: center;
  padding: 64px 44px;
}

.dialog-copy h2,
.memory-form h2 {
  margin: 0 0 20px;
  font-family: var(--serif);
  font-size: 45px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.04em;
}

.dialog-note {
  color: rgba(38, 39, 65, 0.6);
  font-size: 13px;
}

.sound-wave {
  display: flex;
  height: 54px;
  align-items: center;
  gap: 5px;
  margin: 25px 0;
}

.sound-wave i {
  width: 6px;
  height: 25%;
  border-radius: 8px;
  background: var(--coral);
  animation: wave 900ms ease-in-out infinite alternate;
}

.sound-wave i:nth-child(2n) {
  animation-delay: -300ms;
}

.sound-wave i:nth-child(3n) {
  animation-delay: -600ms;
}

@keyframes wave {
  to {
    height: 95%;
  }
}

.memory-form {
  position: relative;
  display: grid;
  gap: 18px;
  padding: 50px;
}

.memory-form p {
  margin: -6px 0 8px;
}

.memory-form label {
  display: grid;
  gap: 6px;
  font-family: var(--utility);
  font-size: 14px;
  font-weight: 800;
}

.memory-form input,
.memory-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--ink);
  background: #fff;
  font-family: var(--sans);
  font-weight: 400;
}

.form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.memory-form small {
  color: rgba(38, 39, 65, 0.58);
}

/* Concept 1 — La maison aux mille histoires */
.concept-one {
  --paper: #f4f1f8;
  --green: #655f9c;
  --green-dark: #2d2f5c;
  background:
    radial-gradient(circle at 9% 13%, rgba(221, 216, 239, 0.72), transparent 25%),
    var(--paper);
}

.hero-one {
  display: grid;
  min-height: 720px;
  width: min(1440px, calc(100% - 64px));
  margin: 0 auto;
  padding: 45px 0 70px;
  grid-template-columns: 0.88fr 1.12fr;
  align-items: center;
  gap: clamp(50px, 7vw, 110px);
}

.hero-one-copy {
  position: relative;
  z-index: 2;
  padding-left: clamp(0px, 3vw, 48px);
}

.hero-one h1 {
  max-width: 650px;
  margin: 0 0 28px;
  font-family: var(--serif);
  font-size: clamp(58px, 7.3vw, 108px);
  font-weight: 500;
  line-height: 0.88;
  letter-spacing: -0.065em;
}

.hero-one h1 em {
  color: var(--coral);
  font-weight: 400;
}

.hero-one-copy > p:not(.eyebrow) {
  max-width: 580px;
  margin: 0 0 32px;
  color: rgba(38, 39, 65, 0.76);
  font-size: 21px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.hero-one-media {
  position: relative;
  min-height: 620px;
}

.hero-one-photo {
  position: absolute;
  inset: 0 0 30px 0;
  overflow: hidden;
  border-radius: 44% 44% 18px 18px;
  box-shadow: var(--shadow);
}

.hero-one-photo img {
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
}

.video-chip {
  position: absolute;
  z-index: 3;
  right: -18px;
  bottom: 0;
  display: flex;
  max-width: 245px;
  align-items: center;
  gap: 14px;
  padding: 16px 20px 16px 14px;
  border: 0;
  border-radius: 18px;
  color: #fff;
  background: var(--green-dark);
  box-shadow: 0 20px 50px rgba(45, 47, 92, 0.3);
  font-family: var(--utility);
  font-size: 14px;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.video-chip span:first-child {
  display: grid;
  width: 50px;
  height: 50px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: var(--green-dark);
  background: var(--yellow);
}

.memory-card {
  position: absolute;
  z-index: 3;
  bottom: 40px;
  left: -92px;
  width: 260px;
  padding: 24px 25px;
  border: 1px solid rgba(101, 95, 156, 0.2);
  border-radius: 4px 24px 24px 24px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  transform: rotate(-3deg);
}

.memory-card::before {
  position: absolute;
  top: -12px;
  left: 38px;
  width: 68px;
  height: 23px;
  background: rgba(243, 201, 80, 0.7);
  content: "";
  transform: rotate(4deg);
}

.memory-card blockquote {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.25;
}

.memory-card cite {
  font-family: var(--utility);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.memory-ribbon {
  overflow: hidden;
  padding: 16px 0;
  color: #fff;
  background: var(--green);
  font-family: var(--serif);
  font-size: 23px;
  white-space: nowrap;
  transform: rotate(-1deg);
}

.memory-ribbon div {
  display: inline-flex;
  gap: 32px;
  min-width: max-content;
  animation: ribbon 28s linear infinite;
}

.memory-ribbon span::after {
  margin-left: 32px;
  color: var(--yellow);
  content: "✦";
}

@keyframes ribbon {
  to {
    transform: translateX(-50%);
  }
}

.welcome-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(60px, 9vw, 140px);
}

.welcome-intro {
  position: sticky;
  top: 40px;
  align-self: start;
}

.welcome-intro .big-number {
  display: block;
  margin-bottom: 20px;
  color: var(--coral);
  font-family: var(--serif);
  font-size: 92px;
  line-height: 0.8;
}

.welcome-intro h2 {
  margin: 0 0 24px;
  font-family: var(--serif);
  font-size: clamp(48px, 6vw, 82px);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.welcome-intro p {
  color: rgba(38, 39, 65, 0.72);
  font-size: 20px;
}

.benefit-list {
  display: grid;
  gap: 18px;
}

.benefit-card {
  display: grid;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.62);
  grid-template-columns: 64px 1fr;
  gap: 24px;
  transition: transform 180ms ease, background 180ms ease;
}

.benefit-card:hover {
  background: #fff;
  transform: translateX(6px);
}

.benefit-icon {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border-radius: 18px;
  color: #fff;
  background: var(--green);
  font-family: var(--serif);
  font-size: 26px;
}

.benefit-card:nth-child(2) .benefit-icon {
  color: var(--ink);
  background: var(--yellow);
}

.benefit-card:nth-child(3) .benefit-icon {
  background: var(--coral);
}

.benefit-card h3 {
  margin: 0 0 8px;
  font-family: var(--utility);
  font-size: 22px;
}

.benefit-card p {
  margin: 0;
  color: rgba(38, 39, 65, 0.7);
}

.featured-memory {
  color: #fff;
  background: var(--green-dark);
}

.memory-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  align-items: center;
  gap: clamp(60px, 8vw, 120px);
}

.memory-portrait {
  position: relative;
  min-height: 560px;
}

.memory-portrait img {
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: 75% center;
  border-radius: 180px 180px 18px 18px;
  filter: saturate(0.86);
}

.memory-year {
  position: absolute;
  right: -35px;
  bottom: 25px;
  display: grid;
  width: 110px;
  height: 110px;
  place-items: center;
  border-radius: 50%;
  color: var(--green-dark);
  background: var(--yellow);
  font-family: var(--serif);
  font-size: 25px;
  transform: rotate(7deg);
}

.memory-copy .eyebrow {
  color: #c9c5eb;
}

.memory-copy h2 {
  max-width: 690px;
  margin: 0 0 28px;
  font-family: var(--serif);
  font-size: clamp(52px, 6.5vw, 86px);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.memory-copy blockquote {
  max-width: 730px;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1.4;
}

.memory-copy .button-ghost {
  color: #fff;
}

.visit-cta {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  background: var(--yellow);
}

.visit-cta::after {
  position: absolute;
  top: -140px;
  right: -80px;
  width: 420px;
  height: 420px;
  border: 80px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  content: "";
}

.visit-cta-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  align-items: end;
  gap: 50px;
}

.visit-cta h2 {
  max-width: 780px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(52px, 7vw, 90px);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: -0.06em;
}

.visit-cta-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.visit-cta .button-primary {
  background: var(--green-dark);
}

/* Concept 2 — La vie en mouvement */
.concept-two {
  --ink: #102c4a;
  --paper: #fff8e8;
  --green: #315fa8;
  --green-dark: #253b64;
  --blue: #245a96;
  --line: rgba(16, 44, 74, 0.16);
  background: var(--paper);
  font-family: "Trebuchet MS", var(--sans);
}

.concept-two .brand-mark {
  border-radius: 14px;
  background: var(--blue);
  transform: rotate(-4deg);
}

.concept-two .site-header {
  width: min(1340px, calc(100% - 64px));
}

.hero-two {
  position: relative;
  overflow: hidden;
  padding: 50px 0 90px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.45) 1px, transparent 1px) 0 0 / 70px 70px,
    linear-gradient(rgba(255, 255, 255, 0.45) 1px, transparent 1px) 0 0 / 70px 70px,
    var(--sky);
}

.hero-two::before {
  position: absolute;
  top: -180px;
  right: -100px;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: var(--yellow);
  content: "";
}

.hero-two-grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 640px;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 80px;
}

.today-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
  padding: 9px 14px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: #fff;
  font-family: var(--utility);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.today-pill::before {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--coral);
  content: "";
  box-shadow: 0 0 0 5px rgba(232, 100, 69, 0.18);
}

.hero-two h1 {
  max-width: 730px;
  margin: 0 0 26px;
  font-size: clamp(66px, 8vw, 124px);
  font-weight: 900;
  line-height: 0.83;
  letter-spacing: -0.085em;
}

.hero-two h1 span {
  display: inline-block;
  color: var(--coral);
  transform: rotate(-2deg);
}

.hero-two-copy > p {
  max-width: 620px;
  margin: 0 0 32px;
  font-size: 21px;
}

.hero-two-media {
  position: relative;
  min-height: 600px;
}

.hero-two-photo {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border: 8px solid #fff;
  border-radius: 210px 210px 24px 24px;
  box-shadow: 18px 18px 0 var(--blue);
  transform: rotate(2deg);
}

.hero-two-photo img {
  height: 100%;
  object-fit: cover;
  object-position: 63% center;
}

.schedule-float {
  position: absolute;
  z-index: 2;
  bottom: -30px;
  left: -65px;
  width: 290px;
  padding: 22px;
  border: 3px solid var(--ink);
  border-radius: 18px;
  background: #fff;
  box-shadow: 10px 10px 0 var(--yellow);
  transform: rotate(-3deg);
}

.schedule-float small {
  display: block;
  margin-bottom: 6px;
  color: var(--coral);
  font-weight: 900;
  text-transform: uppercase;
}

.schedule-float strong {
  display: block;
  font-size: 23px;
  line-height: 1.1;
}

.schedule-float span {
  font-size: 14px;
}

.live-ticker {
  overflow: hidden;
  padding: 18px 0;
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  color: #fff;
  background: var(--coral);
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.live-ticker div {
  display: inline-flex;
  gap: 30px;
  animation: ribbon 24s linear infinite;
}

.live-ticker span::after {
  margin-left: 30px;
  color: var(--yellow);
  content: "●";
}

.day-section {
  background: #fff;
}

.day-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(50px, 8vw, 120px);
}

.day-intro h2 {
  margin: 0 0 24px;
  font-size: clamp(54px, 7vw, 92px);
  line-height: 0.88;
  letter-spacing: -0.07em;
}

.day-intro h2 span {
  color: var(--blue);
}

.day-intro p {
  color: rgba(16, 44, 74, 0.75);
  font-size: 20px;
}

.day-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
}

.day-tabs button {
  min-height: 46px;
  padding: 8px 18px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
  background: transparent;
  font-weight: 900;
  cursor: pointer;
}

.day-tabs button.is-active {
  color: #fff;
  background: var(--blue);
}

.schedule-list {
  margin: 0;
  padding: 0;
  border-top: 3px solid var(--ink);
  list-style: none;
}

.schedule-list li {
  display: grid;
  padding: 24px 10px;
  border-bottom: 2px solid var(--line);
  grid-template-columns: 100px 1fr auto;
  align-items: baseline;
  gap: 18px;
}

.schedule-list time {
  color: var(--coral);
  font-size: 18px;
  font-weight: 900;
}

.schedule-list strong {
  font-size: 24px;
}

.schedule-list span {
  color: rgba(16, 44, 74, 0.62);
  font-size: 14px;
}

.mosaic-section {
  background: var(--yellow);
}

.mosaic-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 50px;
}

.mosaic-heading h2 {
  max-width: 800px;
  margin: 0;
  font-size: clamp(55px, 7vw, 95px);
  line-height: 0.88;
  letter-spacing: -0.075em;
}

.moment-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.8fr;
  gap: 18px;
}

.moment-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border: 3px solid var(--ink);
  border-radius: 24px;
  background: #fff;
}

.moment-card:first-child {
  grid-row: span 2;
  min-height: 740px;
}

.moment-card:nth-child(4) {
  grid-column: 2 / 4;
}

.moment-card img {
  height: 100%;
  object-fit: cover;
}

.moment-card:nth-child(2) img {
  object-position: 30% center;
}

.moment-card:nth-child(3) {
  display: grid;
  place-items: center;
  padding: 34px;
  color: #fff;
  background: var(--blue);
  text-align: center;
}

.moment-card:nth-child(3) strong {
  font-size: 56px;
  line-height: 0.9;
}

.moment-card:nth-child(4) {
  padding: 34px;
  color: #fff;
  background: var(--coral);
}

.moment-card:nth-child(4) blockquote {
  margin: 0;
  font-size: clamp(25px, 3vw, 40px);
  font-weight: 900;
  line-height: 1.08;
}

.moment-label {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 14px 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  font-size: 15px;
  font-weight: 900;
}

.action-banner {
  color: #fff;
  background: var(--blue);
}

.action-banner-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 60px;
}

.action-banner h2 {
  margin: 0 0 20px;
  font-size: clamp(54px, 7vw, 94px);
  line-height: 0.88;
  letter-spacing: -0.075em;
}

.action-banner p {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 20px;
}

.action-banner .button-secondary {
  justify-self: end;
  color: var(--ink);
  box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.2);
}

/* Concept 3 — Le grand livre vivant */
.concept-three {
  --ink: #24231f;
  --paper: #e9dfc8;
  --green: #706785;
  --green-dark: #23283f;
  --line: rgba(36, 35, 31, 0.2);
  color: var(--ink);
  background:
    linear-gradient(rgba(58, 48, 37, 0.04) 1px, transparent 1px) 0 0 / 100% 26px,
    var(--paper);
  font-family: var(--serif);
}

.concept-three .concept-switcher {
  background: #1f2132;
}

.concept-three .site-header {
  color: #f5efdf;
}

.concept-three .brand-mark {
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 4px;
  background: transparent;
}

.concept-three .brand small {
  color: #cac5dd;
}

.concept-three .site-header .button-primary {
  color: #262741;
  background: #f1c97a;
}

.book-hero {
  min-height: 860px;
  padding: 45px 0 100px;
  color: #f4eedf;
  background:
    radial-gradient(circle at 15% 25%, rgba(102, 92, 135, 0.38), transparent 30%),
    #23283f;
}

.book-shell {
  position: relative;
  display: grid;
  min-height: 680px;
  width: min(1320px, calc(100% - 64px));
  margin: 0 auto;
  border-radius: 14px;
  background: #e9dfc8;
  box-shadow: 0 45px 100px rgba(0, 0, 0, 0.36);
  grid-template-columns: 1fr 1fr;
  transform: perspective(1600px) rotateX(1deg);
}

.book-shell::before {
  position: absolute;
  z-index: 4;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 28px;
  background: linear-gradient(90deg, transparent, rgba(49, 39, 28, 0.18), transparent);
  content: "";
  transform: translateX(-50%);
}

.book-left,
.book-right {
  position: relative;
  overflow: hidden;
}

.book-left {
  display: flex;
  padding: clamp(45px, 6vw, 90px);
  flex-direction: column;
  justify-content: space-between;
  color: var(--ink);
  border-radius: 14px 0 0 14px;
}

.book-page-no {
  display: flex;
  justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  font-family: "Courier New", monospace;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.book-left h1 {
  max-width: 610px;
  margin: 30px 0 24px;
  font-size: clamp(60px, 7.2vw, 106px);
  font-weight: 500;
  line-height: 0.83;
  letter-spacing: -0.065em;
}

.book-left h1 em {
  display: block;
  color: #8a482f;
  font-weight: 400;
}

.book-left > div > p {
  max-width: 530px;
  margin: 0 0 28px;
  font-family: var(--sans);
  font-size: 19px;
}

.book-left .button-primary {
  background: #8a482f;
}

.book-right {
  margin: 18px 18px 18px 0;
  border-radius: 0 9px 9px 0;
}

.book-right img {
  height: 100%;
  object-fit: cover;
  object-position: 67% center;
  filter: saturate(0.72) contrast(1.03);
}

.book-caption {
  position: absolute;
  right: 26px;
  bottom: 26px;
  left: 26px;
  padding: 18px 20px;
  color: var(--ink);
  background: rgba(239, 230, 210, 0.92);
  font-family: "Courier New", monospace;
  font-size: 13px;
}

.book-play {
  position: absolute;
  z-index: 3;
  top: 28px;
  right: 28px;
  display: grid;
  width: 84px;
  height: 84px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  color: #fff;
  background: rgba(35, 40, 63, 0.78);
  backdrop-filter: blur(8px);
  cursor: pointer;
}

.chapter-nav {
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.chapter-nav button {
  min-width: 220px;
  min-height: 78px;
  padding: 16px 25px;
  border: 0;
  border-right: 1px solid var(--line);
  color: var(--ink);
  background: transparent;
  font-family: "Courier New", monospace;
  font-size: 13px;
  text-align: left;
  cursor: pointer;
}

.chapter-nav button.is-active {
  color: #fff;
  background: #8a482f;
}

.story-reader {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(60px, 10vw, 150px);
}

.story-index {
  padding-top: 14px;
  border-top: 1px solid var(--ink);
  font-family: "Courier New", monospace;
  font-size: 13px;
}

.story-index strong {
  display: block;
  margin-top: 80px;
  color: #8a482f;
  font-family: var(--serif);
  font-size: 120px;
  font-weight: 400;
  line-height: 0.75;
}

.story-body .eyebrow {
  color: #8a482f;
  font-family: "Courier New", monospace;
}

.story-body h2 {
  max-width: 760px;
  margin: 0 0 30px;
  font-size: clamp(52px, 6vw, 84px);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: -0.055em;
}

.story-body blockquote {
  max-width: 820px;
  margin: 0 0 28px;
  font-size: clamp(24px, 3vw, 37px);
  line-height: 1.35;
}

.story-body cite {
  font-family: "Courier New", monospace;
  font-size: 13px;
  font-style: normal;
}

.collect-memory {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: #8a482f;
}

.collect-memory::before {
  position: absolute;
  top: 50%;
  left: 8%;
  width: 330px;
  height: 330px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  content: "";
  transform: translateY(-50%);
  box-shadow: 0 0 0 55px rgba(255, 255, 255, 0.05), 0 0 0 110px rgba(255, 255, 255, 0.03);
}

.collect-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  align-items: center;
  gap: 100px;
}

.record-symbol {
  display: grid;
  width: 230px;
  height: 230px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
}

.record-symbol span {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #f1c97a;
  box-shadow: 0 0 0 18px rgba(241, 201, 122, 0.16);
}

.collect-copy h2 {
  max-width: 750px;
  margin: 0 0 25px;
  font-size: clamp(56px, 7vw, 94px);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.collect-copy p {
  max-width: 700px;
  font-family: var(--sans);
  font-size: 20px;
}

.collect-copy .button-secondary {
  background: #f1c97a;
}

.book-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.book-service {
  min-height: 300px;
  padding: 38px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.book-service span {
  font-family: "Courier New", monospace;
  font-size: 12px;
}

.book-service h3 {
  margin: 70px 0 14px;
  font-size: 34px;
  font-weight: 500;
}

.book-service p {
  font-family: var(--sans);
  font-size: 16px;
}

/* Concept 4 — Tout près, tout simplement */
.concept-four {
  --ink: #29364b;
  --paper: #f4f6f8;
  --green: #526f97;
  --green-dark: #293e5f;
  --yellow: #e2b863;
  --line: rgba(41, 54, 75, 0.14);
  background: var(--paper);
}

.concept-four .brand-mark {
  border-radius: 50%;
  background: var(--green-dark);
}

.calm-hero {
  position: relative;
  min-height: 800px;
  overflow: hidden;
}

.calm-hero-bg {
  position: absolute;
  inset: 0;
}

.calm-hero-bg::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(28, 46, 72, 0.94) 0%, rgba(28, 46, 72, 0.74) 38%, rgba(28, 46, 72, 0.08) 72%);
  content: "";
}

.calm-hero-bg img {
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
}

.calm-hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 800px;
  align-items: center;
}

.calm-copy {
  max-width: 670px;
  padding: 85px 0;
  color: #fff;
}

.calm-copy .eyebrow {
  color: #cad8ea;
}

.calm-copy h1 {
  margin: 0 0 30px;
  font-family: var(--serif);
  font-size: clamp(62px, 7.5vw, 108px);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.065em;
}

.calm-copy h1 em {
  color: #efc778;
  font-weight: 400;
}

.calm-copy > p {
  max-width: 580px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 21px;
}

.calm-copy .button-primary {
  color: var(--green-dark);
  background: #efc778;
}

.calm-copy .button-ghost {
  color: #fff;
}

.calm-facts {
  position: absolute;
  z-index: 3;
  right: max(32px, calc((100vw - 1240px) / 2));
  bottom: 35px;
  display: grid;
  width: min(610px, 44vw);
  grid-template-columns: repeat(3, 1fr);
  border-radius: 22px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.calm-fact {
  padding: 24px;
}

.calm-fact + .calm-fact {
  border-left: 1px solid var(--line);
}

.calm-fact strong {
  display: block;
  margin-bottom: 5px;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
}

.calm-fact span {
  color: rgba(41, 54, 75, 0.68);
  font-size: 13px;
}

.promise-section {
  background: #fff;
}

.promise-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(70px, 10vw, 150px);
}

.promise-copy h2 {
  margin: 0 0 28px;
  font-family: var(--serif);
  font-size: clamp(53px, 6.5vw, 86px);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: -0.055em;
}

.promise-copy > p {
  color: rgba(41, 54, 75, 0.72);
  font-size: 20px;
}

.reassurance-list {
  display: grid;
  gap: 0;
  margin-top: 40px;
  border-top: 1px solid var(--line);
}

.reassurance-item {
  display: grid;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 18px;
  font-family: var(--utility);
  font-weight: 800;
}

.reassurance-item span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
}

.promise-card {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  border-radius: 180px 180px 24px 24px;
}

.promise-card img {
  height: 100%;
  object-fit: cover;
  object-position: 78% center;
}

.promise-quote {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  padding: 30px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
}

.promise-quote blockquote {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.25;
}

.promise-quote cite {
  font-family: var(--utility);
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
}

.practical-section {
  background: #e2e8f0;
}

.practical-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.practical-card {
  min-height: 300px;
  padding: 30px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  transition: transform 180ms ease, background 180ms ease;
}

.practical-card:hover {
  background: #fff;
  transform: translateY(-6px);
}

.practical-card span {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
  font-family: var(--serif);
  font-size: 21px;
}

.practical-card h3 {
  margin: 55px 0 12px;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
}

.practical-card p {
  margin: 0;
  color: rgba(41, 54, 75, 0.68);
  font-size: 15px;
}

.calm-memory {
  color: #fff;
  background: var(--green-dark);
}

.calm-memory-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 80px;
}

.calm-memory h2 {
  margin: 0 0 25px;
  font-family: var(--serif);
  font-size: clamp(55px, 7vw, 92px);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: -0.06em;
}

.calm-memory p {
  color: rgba(255, 255, 255, 0.74);
  font-size: 20px;
}

.calm-memory-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.calm-memory .button-secondary {
  color: var(--green-dark);
  background: #efc778;
}

.availability-card {
  display: grid;
  padding: 70px;
  border-radius: 30px;
  color: #fff;
  background: var(--green);
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 60px;
}

.availability-card h2 {
  margin: 0 0 20px;
  font-family: var(--serif);
  font-size: clamp(50px, 6vw, 78px);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.availability-card p {
  color: rgba(255, 255, 255, 0.78);
}

.availability-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.availability-actions .button-primary {
  color: var(--green-dark);
  background: #fff;
}

@media (max-width: 1050px) {
  .site-header {
    width: min(100% - 40px, 1240px);
    grid-template-columns: 1fr auto;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .site-nav {
    position: fixed;
    z-index: 100;
    inset: 0;
    display: flex;
    padding: 100px 30px;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    color: #fff;
    background: rgba(36, 40, 69, 0.98);
    font-family: var(--serif);
    font-size: 32px;
    transform: translateY(-105%);
    transition: transform 240ms ease;
  }

  .menu-open .site-nav {
    transform: translateY(0);
  }

  .header-actions .button,
  .phone-link {
    display: none;
  }

  .menu-toggle {
    position: relative;
    z-index: 110;
  }

  .menu-open .menu-toggle {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.4);
  }

  .hero-one,
  .hero-two-grid,
  .day-layout,
  .memory-layout,
  .story-reader,
  .collect-grid,
  .promise-layout,
  .calm-memory-grid {
    grid-template-columns: 1fr;
  }

  .hero-one {
    padding-top: 25px;
  }

  .hero-one-media {
    min-height: 620px;
  }

  .hero-one-copy {
    padding-left: 0;
  }

  .welcome-grid {
    grid-template-columns: 1fr;
  }

  .welcome-intro {
    position: static;
  }

  .hero-two-grid {
    gap: 50px;
  }

  .hero-two-media {
    min-height: 620px;
  }

  .moment-grid {
    grid-template-columns: 1fr 1fr;
  }

  .moment-card:first-child {
    grid-row: auto;
    min-height: 500px;
  }

  .moment-card:nth-child(4) {
    grid-column: 1 / 3;
  }

  .book-shell {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .book-shell::before {
    display: none;
  }

  .book-right {
    min-height: 620px;
    margin: 0 18px 18px;
    border-radius: 9px;
  }

  .book-services,
  .practical-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .calm-facts {
    right: 25px;
    left: 25px;
    width: auto;
  }

  .calm-copy {
    padding-bottom: 210px;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 17px;
  }

  .concept-switcher {
    display: block;
    padding: 9px 12px 11px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .concept-switcher p {
    display: none;
  }

  .concept-switcher nav {
    width: max-content;
    margin: auto;
  }

  .concept-switcher a {
    padding-inline: 10px;
    font-size: 12px;
  }

  .site-header {
    width: calc(100% - 28px);
    min-height: 78px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .brand {
    font-size: 15px;
  }

  .section-shell,
  .hero-one,
  .book-shell {
    width: calc(100% - 32px);
  }

  .section-pad {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .hero-one h1,
  .hero-two h1,
  .calm-copy h1 {
    font-size: clamp(54px, 17vw, 76px);
  }

  .hero-one {
    min-height: auto;
    gap: 35px;
  }

  .hero-one-media {
    min-height: 470px;
  }

  .hero-one-photo {
    inset: 0 0 45px;
    border-radius: 150px 150px 18px 18px;
  }

  .memory-card {
    display: none;
  }

  .video-chip {
    right: 8px;
  }

  .welcome-intro .big-number {
    font-size: 70px;
  }

  .benefit-card {
    padding: 24px;
    grid-template-columns: 50px 1fr;
    gap: 16px;
  }

  .benefit-icon {
    width: 50px;
    height: 50px;
  }

  .memory-portrait,
  .memory-portrait img {
    min-height: 460px;
  }

  .memory-year {
    right: 0;
  }

  .visit-cta-grid,
  .action-banner-grid,
  .availability-card {
    grid-template-columns: 1fr;
  }

  .visit-cta h2,
  .day-intro h2,
  .mosaic-heading h2,
  .action-banner h2,
  .collect-copy h2,
  .calm-memory h2 {
    font-size: 52px;
  }

  .hero-two {
    padding-top: 30px;
  }

  .hero-two-grid {
    min-height: auto;
  }

  .hero-two::before {
    width: 430px;
    height: 430px;
  }

  .hero-two-media {
    min-height: 500px;
  }

  .hero-two-photo {
    border-width: 5px;
    border-radius: 150px 150px 20px 20px;
    box-shadow: 10px 10px 0 var(--blue);
  }

  .schedule-float {
    bottom: -20px;
    left: 5px;
    width: 250px;
  }

  .schedule-list li {
    grid-template-columns: 80px 1fr;
  }

  .schedule-list span {
    grid-column: 2;
  }

  .mosaic-heading {
    display: block;
  }

  .mosaic-heading .button {
    margin-top: 25px;
  }

  .moment-grid {
    grid-template-columns: 1fr;
  }

  .moment-card,
  .moment-card:first-child {
    min-height: 380px;
  }

  .moment-card:nth-child(4) {
    grid-column: auto;
  }

  .action-banner .button-secondary {
    justify-self: start;
  }

  .book-hero {
    min-height: auto;
    padding-top: 20px;
  }

  .book-left {
    padding: 38px 28px 48px;
  }

  .book-left h1 {
    font-size: 60px;
  }

  .book-right {
    min-height: 480px;
    margin: 0 10px 10px;
  }

  .story-index {
    display: none;
  }

  .story-body h2 {
    font-size: 50px;
  }

  .collect-grid {
    gap: 70px;
  }

  .record-symbol {
    width: 180px;
    height: 180px;
    margin: auto;
  }

  .book-services,
  .practical-grid {
    grid-template-columns: 1fr;
  }

  .calm-hero,
  .calm-hero-inner {
    min-height: 850px;
  }

  .calm-hero-bg::after {
    background: linear-gradient(180deg, rgba(28, 46, 72, 0.92) 0%, rgba(28, 46, 72, 0.65) 58%, rgba(28, 46, 72, 0.28) 100%);
  }

  .calm-copy {
    align-self: flex-start;
    padding: 85px 0 270px;
  }

  .calm-facts {
    bottom: 20px;
    grid-template-columns: 1fr;
  }

  .calm-fact {
    padding: 14px 20px;
  }

  .calm-fact + .calm-fact {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .calm-fact strong {
    display: inline;
    margin-right: 8px;
    font-size: 22px;
  }

  .promise-card {
    min-height: 520px;
  }

  .availability-card {
    padding: 40px 28px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-bottom,
  .form-actions {
    flex-direction: column;
  }

  .dialog-inner {
    grid-template-columns: 1fr;
  }

  .dialog-visual {
    min-height: 300px;
  }

  .dialog-copy,
  .memory-form {
    padding: 42px 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Le Salon — cinéma vivant des résidents */
.salon-page {
  --ink: #262741;
  --paper: #f4f1f8;
  --green: #655f9c;
  --green-dark: #272b52;
  --yellow: #efc768;
  --line: rgba(38, 39, 65, 0.16);
  color: var(--ink);
  background: var(--paper);
}

.salon-page .brand-mark {
  border-radius: 12px 50% 50% 50%;
  background: var(--green-dark);
}

.salon-page .site-header {
  min-height: 92px;
}

.salon-intro {
  padding: 80px 0 95px;
  background:
    radial-gradient(circle at 84% 18%, rgba(239, 199, 104, 0.2), transparent 23%),
    linear-gradient(135deg, #f6f2fa 0%, #eeeaf7 100%);
}

.salon-intro-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: end;
  gap: clamp(60px, 10vw, 150px);
}

.salon-intro h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(84px, 13vw, 176px);
  font-weight: 500;
  line-height: 0.74;
  letter-spacing: -0.075em;
}

.salon-intro h1 em {
  color: var(--coral);
  font-weight: 400;
}

.salon-intro-copy {
  padding-bottom: 8px;
}

.salon-intro-copy p {
  max-width: 620px;
  margin: 0 0 24px;
  color: rgba(38, 39, 65, 0.74);
  font-size: 21px;
}

.salon-cinema {
  padding: 54px 0 38px;
  color: #fff;
  background:
    radial-gradient(circle at 50% 0%, rgba(101, 95, 156, 0.33), transparent 34%),
    #1c1e35;
}

.salon-stage-shell {
  width: min(1536px, 100%);
  margin: 0 auto;
}

.salon-media-slider {
  position: relative;
  outline: none;
}

.salon-media-slider:focus-visible {
  outline: 3px solid #efc768;
  outline-offset: 5px;
}

.salon-slider-track {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  background: #0d0f1b;
  box-shadow: 0 35px 110px rgba(0, 0, 0, 0.45);
}

.salon-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: scale(1.018);
  transition: opacity 500ms ease, transform 700ms ease, visibility 500ms ease;
}

.salon-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: scale(1);
}

.salon-stage {
  background: #0d0f1b;
}

.salon-stage-static {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 3 / 2;
  box-shadow: 0 35px 110px rgba(0, 0, 0, 0.34);
}

.salon-room {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.salon-tv-embed {
  position: absolute;
  z-index: 2;
  top: 9.75%;
  left: 21.9%;
  overflow: hidden;
  width: 59.75%;
  height: 43.25%;
  border-radius: 2px;
  background: #050508;
  box-shadow:
    0 0 0 3px rgba(0, 0, 0, 0.88),
    0 10px 34px rgba(0, 0, 0, 0.42);
}

.salon-tv-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.salon-video-slide {
  display: grid;
  place-items: center;
  background: #080914;
}

.salon-slider-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #080914;
}

.salon-photo-slide > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 67%;
}

.salon-photo-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(25, 27, 50, 0.78) 0%, rgba(25, 27, 50, 0.2) 55%, transparent 80%);
}

.salon-slide-caption {
  position: absolute;
  z-index: 2;
  bottom: 9%;
  left: max(32px, 6%);
  max-width: 600px;
  color: #fff;
  pointer-events: none;
}

.salon-slide-caption-light {
  top: 7%;
  bottom: auto;
  max-width: 500px;
  padding: 18px 22px;
  border-radius: 16px;
  background: rgba(20, 22, 40, 0.74);
  backdrop-filter: blur(10px);
}

.salon-slide-caption-light h2 {
  font-size: clamp(30px, 3.7vw, 56px);
}

.salon-slide-caption p {
  margin: 0 0 9px;
  color: #efc768;
  font-family: var(--utility);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.salon-slide-caption h2 {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: clamp(34px, 5vw, 76px);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: -0.055em;
}

.salon-slide-caption span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.salon-slider-arrow {
  position: absolute;
  z-index: 8;
  top: 50%;
  display: grid;
  width: 58px;
  height: 58px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 50%;
  color: #fff;
  background: rgba(25, 27, 50, 0.66);
  font-size: 24px;
  cursor: pointer;
  backdrop-filter: blur(9px);
  transform: translateY(-50%);
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.salon-slider-arrow:hover {
  color: var(--green-dark);
  background: #efc768;
  transform: translateY(-50%) scale(1.05);
}

.salon-slider-prev {
  left: 24px;
}

.salon-slider-next {
  right: 24px;
}

.salon-slider-toolbar {
  display: grid;
  min-height: 72px;
  width: min(1240px, calc(100% - 64px));
  margin: 0 auto;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 30px;
}

.salon-slider-toolbar .salon-player-status {
  width: auto;
  min-height: 0;
  margin: 0;
  justify-content: flex-start;
  text-align: left;
}

.salon-slider-dots {
  display: flex;
  align-items: center;
  gap: 9px;
}

.salon-slider-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: width 180ms ease, border-radius 180ms ease, background 180ms ease;
}

.salon-slider-dots button.is-active {
  width: 30px;
  border-color: #efc768;
  border-radius: 999px;
  background: #efc768;
}

.salon-slider-count {
  color: rgba(255, 255, 255, 0.5);
  font-family: "Courier New", monospace;
  font-size: 12px;
}

.salon-slider-count strong {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
}

.salon-tv-overlay {
  position: absolute;
  top: 9.65%;
  left: 21.88%;
  width: 59.72%;
  height: 43.45%;
  overflow: hidden;
  border-radius: 2px;
  color: #fff;
  background: #111;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.08);
}

.salon-tv-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
  filter: saturate(0.78) brightness(0.82);
  transition: object-position 500ms ease, filter 350ms ease, transform 6s ease;
}

.salon-tv-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(17, 20, 39, 0.84) 0%, rgba(17, 20, 39, 0.48) 48%, rgba(17, 20, 39, 0.06) 78%);
}

.salon-tv-copy {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 6.5%;
  max-width: 55%;
  transform: translateY(-50%);
}

.salon-tv-copy span {
  display: block;
  margin-bottom: 9px;
  color: #efc768;
  font-family: var(--utility);
  font-size: clamp(8px, 0.8vw, 13px);
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.salon-tv-copy h2 {
  margin: 0 0 9px;
  font-family: var(--serif);
  font-size: clamp(18px, 2.7vw, 46px);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: -0.045em;
}

.salon-tv-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(8px, 1vw, 15px);
}

.salon-play {
  position: absolute;
  z-index: 3;
  top: 50%;
  right: 7%;
  display: grid;
  width: clamp(44px, 6vw, 88px);
  height: clamp(44px, 6vw, 88px);
  padding: 0;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 50%;
  color: var(--green-dark);
  background: #efc768;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.34);
  cursor: pointer;
  transform: translateY(-50%);
  transition: transform 180ms ease, background 180ms ease;
}

.salon-play:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.06);
}

.salon-play span {
  margin-left: 4px;
  font-size: clamp(14px, 1.8vw, 27px);
}

.salon-stage.is-playing .salon-play span {
  width: 14px;
  height: 22px;
  margin: 0;
  border-right: 5px solid var(--green-dark);
  border-left: 5px solid var(--green-dark);
  color: transparent;
  font-size: 0;
}

.salon-stage.is-playing .salon-tv-poster {
  filter: saturate(0.92) brightness(0.95);
  transform: scale(1.045);
}

.salon-progress {
  position: absolute;
  z-index: 3;
  right: 6%;
  bottom: 7%;
  left: 6%;
  height: 3px;
  overflow: hidden;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.3);
}

.salon-progress i {
  display: block;
  width: 11%;
  height: 100%;
  border-radius: inherit;
  background: var(--coral);
}

.salon-stage.is-playing .salon-progress i {
  animation: salon-progress 18s linear forwards;
}

@keyframes salon-progress {
  from {
    width: 11%;
  }
  to {
    width: 88%;
  }
}

.salon-demo-label {
  position: absolute;
  z-index: 3;
  top: 6%;
  right: 3%;
  padding: 5px 9px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(20, 22, 40, 0.58);
  font-family: var(--utility);
  font-size: clamp(7px, 0.7vw, 11px);
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}

.salon-player-status {
  display: flex;
  min-height: 64px;
  width: min(1240px, calc(100% - 64px));
  margin: 0 auto;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  text-align: center;
}

.salon-live-dot {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 6px rgba(232, 100, 69, 0.14);
}

.salon-media-slider.has-playing + .salon-slider-toolbar .salon-live-dot {
  animation: salon-pulse 900ms ease-in-out infinite alternate;
}

@keyframes salon-pulse {
  to {
    box-shadow: 0 0 0 10px rgba(232, 100, 69, 0.04);
  }
}

.salon-program-section {
  background: #f4f1f8;
}

.salon-program-layout {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: clamp(65px, 9vw, 135px);
}

.salon-program-heading {
  max-width: 720px;
  margin-bottom: 40px;
}

.salon-program-heading h2 {
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: clamp(50px, 6vw, 82px);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: -0.055em;
}

.salon-program-heading > p:last-child {
  max-width: 590px;
  color: rgba(38, 39, 65, 0.68);
  font-size: 19px;
}

.salon-program-list {
  border-top: 1px solid var(--line);
}

.salon-program-item {
  display: grid;
  width: 100%;
  min-height: 104px;
  padding: 18px 16px 18px 6px;
  border: 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  background: transparent;
  grid-template-columns: 54px 1fr 50px;
  align-items: center;
  gap: 16px;
  text-align: left;
  cursor: pointer;
  transition: padding 180ms ease, color 180ms ease, background 180ms ease;
}

.salon-program-item:hover,
.salon-program-item.is-active {
  padding-left: 18px;
  color: #fff;
  background: var(--green-dark);
}

.salon-program-number {
  font-family: "Courier New", monospace;
  font-size: 12px;
}

.salon-program-item strong,
.salon-program-item small {
  display: block;
}

.salon-program-item strong {
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 500;
  line-height: 1.1;
}

.salon-program-item small {
  margin-top: 5px;
  color: rgba(38, 39, 65, 0.58);
  font-family: var(--utility);
  font-size: 12px;
}

.salon-program-item:hover small,
.salon-program-item.is-active small {
  color: rgba(255, 255, 255, 0.6);
}

.salon-program-arrow {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 12px;
}

.salon-manifesto {
  position: sticky;
  top: 40px;
  align-self: start;
  padding: 46px;
  border-radius: 3px 36px 36px 36px;
  color: #fff;
  background: var(--green-dark);
  box-shadow: 0 28px 70px rgba(39, 43, 82, 0.2);
}

.salon-manifesto-mark {
  display: block;
  height: 56px;
  color: #efc768;
  font-family: var(--serif);
  font-size: 92px;
  line-height: 0.9;
}

.salon-manifesto blockquote {
  margin: 20px 0 26px;
  font-family: var(--serif);
  font-size: clamp(29px, 3vw, 42px);
  line-height: 1.08;
}

.salon-manifesto p {
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.68);
}

.salon-project {
  background:
    linear-gradient(rgba(38, 39, 65, 0.055) 1px, transparent 1px) 0 0 / 100% 32px,
    #f5efe4;
}

.salon-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(38, 39, 65, 0.24);
  border-left: 1px solid rgba(38, 39, 65, 0.24);
}

.salon-step {
  min-height: 350px;
  padding: 36px;
  border-right: 1px solid rgba(38, 39, 65, 0.24);
  border-bottom: 1px solid rgba(38, 39, 65, 0.24);
}

.salon-step > span {
  font-family: "Courier New", monospace;
  font-size: 13px;
}

.salon-step h3 {
  margin: 100px 0 14px;
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 500;
  letter-spacing: -0.035em;
}

.salon-step p {
  margin: 0;
  color: rgba(38, 39, 65, 0.68);
}

.salon-invitation {
  color: #fff;
  background:
    radial-gradient(circle at 12% 20%, rgba(101, 95, 156, 0.56), transparent 35%),
    #20233f;
}

.salon-invitation-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: end;
  gap: 70px;
}

.salon-invitation .eyebrow {
  color: #c9c5eb;
}

.salon-invitation h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(65px, 9vw, 120px);
  font-weight: 500;
  line-height: 0.85;
  letter-spacing: -0.07em;
}

.salon-invitation-actions {
  max-width: 520px;
}

.salon-invitation-actions p {
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 20px;
}

@media (max-width: 1120px) {
  .salon-page .site-header {
    grid-template-columns: 1fr auto;
  }

  .salon-page .site-nav {
    position: fixed;
    z-index: 100;
    inset: 0;
    display: flex;
    padding: 100px 30px;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    color: #fff;
    background: rgba(36, 40, 69, 0.98);
    font-family: var(--serif);
    font-size: 32px;
    transform: translateY(-105%);
    transition: transform 240ms ease;
  }

  .salon-page.menu-open .site-nav {
    transform: translateY(0);
  }

  .salon-page .menu-toggle {
    display: grid;
    position: relative;
    z-index: 110;
    place-items: center;
  }

  .salon-page .header-actions .button,
  .salon-page .phone-link {
    display: none;
  }

  .salon-program-layout {
    grid-template-columns: 1fr;
  }

  .salon-manifesto {
    position: static;
  }
}

@media (max-width: 760px) {
  .salon-intro {
    padding: 65px 0 70px;
  }

  .salon-intro-grid,
  .salon-invitation-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .salon-intro h1 {
    font-size: 92px;
  }

  .salon-cinema {
    padding-top: 24px;
  }

  .salon-slider-arrow {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }

  .salon-slider-prev {
    left: 10px;
  }

  .salon-slider-next {
    right: 10px;
  }

  .salon-slider-toolbar {
    min-height: 110px;
    width: calc(100% - 34px);
    padding: 13px 0 9px;
    grid-template-columns: 1fr auto;
    gap: 10px 18px;
  }

  .salon-slider-toolbar .salon-player-status {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: center;
    text-align: center;
  }

  .salon-slider-dots {
    justify-self: start;
  }

  .salon-slider-count {
    justify-self: end;
  }

  .salon-video-slide .salon-slide-caption {
    display: none;
  }

  .salon-slide-caption {
    bottom: 7%;
    left: 7%;
    max-width: 70%;
  }

  .salon-slide-caption p {
    margin-bottom: 5px;
    font-size: 8px;
  }

  .salon-slide-caption h2 {
    margin-bottom: 3px;
    font-size: 28px;
  }

  .salon-slide-caption span {
    font-size: 8px;
  }

  .salon-tv-copy {
    display: none;
  }

  .salon-play {
    right: 50%;
    width: 46px;
    height: 46px;
    transform: translate(50%, -50%);
  }

  .salon-play:hover {
    transform: translate(50%, -50%) scale(1.04);
  }

  .salon-demo-label {
    display: none;
  }

  .salon-player-status {
    width: calc(100% - 34px);
    min-height: 74px;
    font-size: 12px;
  }

  .salon-program-heading h2 {
    font-size: 52px;
  }

  .salon-program-item {
    min-height: 94px;
    grid-template-columns: 36px 1fr 40px;
    gap: 10px;
  }

  .salon-program-item strong {
    font-size: 19px;
  }

  .salon-program-arrow {
    width: 36px;
    height: 36px;
  }

  .salon-manifesto {
    padding: 34px 28px;
  }

  .salon-steps {
    grid-template-columns: 1fr;
  }

  .salon-step {
    min-height: 270px;
    padding: 30px;
  }

  .salon-step h3 {
    margin-top: 65px;
  }

  .salon-invitation h2 {
    font-size: 68px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .salon-slide,
  .salon-slider-arrow,
  .salon-slider-dots button,
  .salon-tv-poster,
  .salon-play,
  .salon-program-item {
    transition: none !important;
  }

  .salon-stage.is-playing .salon-progress i,
  .salon-media-slider.has-playing + .salon-slider-toolbar .salon-live-dot {
    animation: none !important;
  }
}

/* Shared hero carousel — used by the four homepage concepts */
.home-hero-slider,
.home-hero-slider-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.home-hero-slider {
  --home-slide-duration: 6200ms;
  z-index: 0;
  overflow: hidden;
  outline: none;
}

.home-hero-slider:focus-visible {
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.92);
}

.home-hero-slide {
  z-index: 1;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  visibility: hidden;
  opacity: 0.55;
  pointer-events: none;
  clip-path: inset(0 0 0 100%);
  filter: saturate(0.84) brightness(0.9);
  transform: translateX(4%) scale(1.035);
  transition:
    clip-path 900ms cubic-bezier(0.76, 0, 0.24, 1),
    opacity 700ms ease,
    filter 900ms ease,
    transform 1100ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 900ms;
}

.home-hero-slide.is-active {
  z-index: 2;
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  clip-path: inset(0);
  filter: none;
  transform: translateX(0) scale(1);
  transition-delay: 0s;
}

.home-hero-slide img,
.home-hero-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-hero-video {
  background: #0b0c17;
}

.home-hero-slide.is-active img {
  animation: home-memory-drift var(--home-slide-duration) ease-out both;
}

@keyframes home-memory-drift {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.045);
  }
}

.home-hero-slider.is-transitioning::after {
  position: absolute;
  z-index: 5;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 35%,
    rgba(255, 255, 255, 0.18) 49%,
    rgba(255, 255, 255, 0.06) 55%,
    transparent 68%
  );
  content: "";
  pointer-events: none;
  animation: home-light-sweep 900ms cubic-bezier(0.76, 0, 0.24, 1) both;
}

@keyframes home-light-sweep {
  from {
    opacity: 0;
    transform: translateX(-45%);
  }
  40% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translateX(45%);
  }
}

.hero-one-photo .home-hero-slide img {
  object-position: 58% center;
}

.hero-two-photo .home-hero-slide img {
  object-position: 63% center;
}

.book-right .home-hero-slide img {
  object-position: 67% center;
}

.calm-hero-bg .home-hero-slide img {
  object-position: 62% center;
}

.home-hero-slider .home-hero-slide:last-child img {
  object-position: center 52%;
}

.home-slider-arrow {
  position: absolute;
  z-index: 6;
  top: 50%;
  display: grid;
  width: 46px;
  height: 46px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  color: #fff;
  background: rgba(24, 27, 51, 0.66);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
  font: 600 20px/1 var(--utility);
  cursor: pointer;
  transform: translateY(-50%);
  backdrop-filter: blur(8px);
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.home-slider-arrow:hover {
  background: rgba(71, 66, 134, 0.92);
  transform: translateY(-50%) scale(1.06);
}

.home-slider-arrow:focus-visible,
.home-slider-dots button:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}

.home-slider-prev {
  left: 15px;
}

.home-slider-next {
  right: 15px;
}

.home-slider-dots {
  position: absolute;
  z-index: 6;
  bottom: 18px;
  left: 50%;
  display: flex;
  padding: 8px 10px;
  gap: 7px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  background: rgba(24, 27, 51, 0.64);
  transform: translateX(-50%);
  backdrop-filter: blur(8px);
}

.home-slider-dots button {
  position: relative;
  overflow: hidden;
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition:
    width 180ms ease,
    background 180ms ease;
}

.home-slider-dots button.is-active {
  width: 28px;
  background: rgba(255, 255, 255, 0.3);
}

.home-slider-dots button.is-active::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: #fff;
  content: "";
  transform-origin: left center;
  animation: home-dot-progress var(--home-slide-duration) linear both;
}

@keyframes home-dot-progress {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

.home-slider-toggle {
  position: absolute;
  z-index: 7;
  top: 16px;
  right: 16px;
  display: grid;
  width: 36px;
  height: 36px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  color: #fff;
  background: rgba(24, 27, 51, 0.62);
  font: 700 12px/1 var(--utility);
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.home-slider-toggle:hover {
  background: rgba(71, 66, 134, 0.92);
  transform: scale(1.06);
}

.home-slider-toggle:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}

.calm-hero-bg::after {
  z-index: 1;
  pointer-events: none;
}

.calm-hero-bg .home-slider-arrow,
.calm-hero-bg .home-slider-dots {
  z-index: 3;
}

.calm-hero-bg .home-slider-dots {
  top: 24px;
  right: 24px;
  bottom: auto;
  left: auto;
  transform: none;
}

.calm-hero-bg .home-slider-toggle {
  right: 124px;
}

@media (max-width: 760px) {
  .salon-stage-static {
    min-height: 0;
    aspect-ratio: 3 / 2;
  }

  .home-slider-arrow {
    width: 40px;
    height: 40px;
    font-size: 17px;
  }

  .home-slider-prev {
    left: 9px;
  }

  .home-slider-next {
    right: 9px;
  }

  .home-slider-dots {
    bottom: 12px;
  }

  .calm-hero-bg .home-slider-dots {
    top: 14px;
    right: 14px;
  }

  .home-slider-toggle {
    top: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
  }

  .calm-hero-bg .home-slider-toggle {
    top: 12px;
    right: 108px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-hero-slide,
  .home-slider-arrow,
  .home-slider-dots button {
    transition: none !important;
  }

  .home-hero-slide.is-active img,
  .home-hero-slider.is-transitioning::after,
  .home-slider-dots button.is-active::after {
    animation: none !important;
  }
}
