@font-face {
  font-family: "QuicksandLocal";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("assets/fonts/quicksand-light.ttf") format("truetype");
}

@font-face {
  font-family: "QuicksandLocal";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/quicksand-regular.ttf") format("truetype");
}

@font-face {
  font-family: "QuicksandLocal";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("assets/fonts/quicksand-semibold.ttf") format("truetype");
}

@font-face {
  font-family: "QuicksandLocal";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("assets/fonts/quicksand-bold.ttf") format("truetype");
}

:root {
  color-scheme: light;
  --ink: #182123;
  --ink-rgb: 24, 33, 35;
  --muted: #5c6764;
  --paper: #f5f1ea;
  --paper-rgb: 245, 241, 234;
  --white: #ffffff;
  --line: rgba(23, 32, 31, 0.14);
  --teal: #0d747b;
  --teal-dark: #073f45;
  --clay: #b98a4e;
  --brass: #c09a58;
  --blue: #2b789c;
  --blue-deep: #1e566e;
  --blue-wash: #e3edf1;
  --wood: #d8b06f;
  --shadow: 0 18px 60px rgba(23, 32, 31, 0.18);
  --max: 1180px;
  --font-logo: "QuicksandLocal", "Avenir Next", "Arial Rounded MT Bold", sans-serif;
  --font-body: "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.5;
  text-rendering: geometricPrecision;
}

body.menu-open {
  overflow: hidden;
}

body.loader-done .site-loader {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

img,
video {
  display: block;
  max-width: 100%;
}

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

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(24, 33, 35, 0.94), rgba(30, 86, 110, 0.9)),
    url("assets/images/salon-02.jpg") center / cover;
  color: var(--paper);
  transition: opacity 420ms ease, visibility 420ms ease;
  animation: loader-auto-hide 420ms ease 1500ms forwards;
}

.loader-frame {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  max-width: calc(100vw - 40px);
  gap: 12px 22px;
  padding: 20px 24px;
  border: 1px solid rgba(245, 241, 234, 0.24);
  background: rgba(24, 33, 35, 0.44);
  box-shadow: 0 22px 80px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
}

.loader-logo {
  display: grid;
  gap: 8px;
  min-width: min(238px, 60vw);
}

.loader-logo span {
  color: rgba(245, 241, 234, 0.08);
  font-family: var(--font-logo);
  font-size: clamp(2rem, 6vw, 3.2rem);
  font-weight: 300;
  line-height: 1;
  -webkit-text-stroke: 1.2px rgba(245, 241, 234, 0.92);
}

.loader-logo i {
  position: relative;
  display: block;
  width: 100%;
  height: 3px;
}

.loader-logo i::before,
.loader-logo i::after {
  position: absolute;
  top: 0;
  height: 100%;
  background: rgba(245, 241, 234, 0.84);
  content: "";
}

.loader-logo i::before {
  left: 0;
  width: 69%;
  transform: scaleX(0);
  transform-origin: left;
  animation: line-draw 700ms cubic-bezier(0.2, 0.8, 0.2, 1) 180ms forwards;
}

.loader-logo i::after {
  right: 0;
  width: 21%;
  transform: scaleX(0);
  transform-origin: right;
  animation: line-draw 500ms cubic-bezier(0.2, 0.8, 0.2, 1) 620ms forwards;
}

@keyframes line-draw {
  to {
    transform: scaleX(1);
  }
}

.loader-copy strong {
  color: rgba(245, 241, 234, 0.68);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.loader-track {
  position: absolute;
  bottom: clamp(34px, 7vh, 72px);
  left: 50%;
  width: min(300px, calc(100vw - 48px));
  height: 2px;
  overflow: hidden;
  background: rgba(245, 241, 234, 0.2);
  transform: translateX(-50%);
}

.loader-track span {
  display: block;
  width: 42%;
  height: 100%;
  background: linear-gradient(90deg, var(--wood), var(--blue), var(--paper));
  animation: loader-sweep 1200ms cubic-bezier(0.78, 0, 0.2, 1) infinite;
}

.grain {
  position: fixed;
  inset: -50%;
  z-index: 95;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

.cursor-badge {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 90;
  display: none;
  padding: 10px 14px;
  background: var(--brass);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  border-radius: 999px;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.6);
  transition: opacity 160ms ease, transform 160ms ease;
}

@media (pointer: fine) {
  .cursor-badge {
    display: block;
  }
}

.cursor-badge.is-on {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.progress-line {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--wood), var(--blue), var(--teal));
  transform: scaleX(0);
  transform-origin: left;
}

.site-header {
  position: fixed;
  top: 14px;
  left: 50%;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: min(calc(100% - 28px), 1220px);
  min-height: 66px;
  padding: 10px 12px 10px 14px;
  background: rgba(247, 244, 238, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.14);
  transform: translateX(-50%);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  background: rgba(247, 244, 238, 0.96);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 250px;
}

.brand-sign {
  display: grid;
  gap: 9px;
  width: min(250px, 28vw);
  padding: 10px 12px;
  background: var(--ink);
}

.brand-sign-text {
  color: rgba(245, 241, 234, 0.05);
  font-family: var(--font-logo);
  font-size: clamp(1.48rem, 2.5vw, 2.05rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0;
  -webkit-text-stroke: 0.72px rgba(245, 241, 234, 0.94);
}

.brand-sign-rule {
  position: relative;
  display: block;
  height: 2px;
}

.brand-sign-rule::before,
.brand-sign-rule::after {
  position: absolute;
  top: 0;
  height: 100%;
  background: rgba(245, 241, 234, 0.9);
  content: "";
}

.brand-sign-rule::before {
  left: 0;
  width: 69%;
}

.brand-sign-rule::after {
  right: 0;
  width: 21%;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2vw, 30px);
  font-size: 0.88rem;
  font-weight: 700;
  color: rgba(23, 32, 31, 0.76);
}

.main-nav a {
  position: relative;
  padding: 10px 0;
}

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

.main-nav a:hover::after,
.main-nav a.is-active::after {
  transform: scaleX(1);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.nav-cta,
.button-primary {
  background: var(--teal);
  color: var(--white);
}

.nav-cta:hover,
.button-primary:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
}

.button-ghost.dark {
  border-color: rgba(23, 32, 31, 0.2);
  color: var(--ink);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-1px);
}

.button-ghost.dark:hover {
  background: rgba(23, 32, 31, 0.06);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  transition: transform 180ms ease;
}

.hero {
  position: relative;
  min-height: clamp(780px, 88vh, 960px);
  padding: 0;
  overflow: hidden;
  background: #1d2422;
  color: var(--white);
}

.hero-video,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  object-fit: cover;
}

.hero-overlay {
  background:
    radial-gradient(circle at 74% 24%, rgba(43, 120, 156, 0.28) 0, rgba(43, 120, 156, 0) 28%),
    linear-gradient(90deg, rgba(12, 22, 24, 0.9) 0%, rgba(12, 22, 24, 0.54) 48%, rgba(12, 22, 24, 0.14) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.2) 60%, rgba(245, 241, 234, 1) 100%);
}

.hero-side-note {
  position: absolute;
  top: 142px;
  right: max(20px, calc((100vw - var(--max)) / 2));
  z-index: 2;
  display: grid;
  gap: 14px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.hero-side-note span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(720px, calc(100% - 40px));
  padding: clamp(130px, 18vh, 190px) 0 240px;
  margin-left: max(20px, calc((100vw - var(--max)) / 2));
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--clay);
  font-size: 0.77rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f2cf93;
}

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

h1 {
  max-width: 920px;
  margin-bottom: 18px;
  font-family: var(--font-logo);
  font-size: clamp(3.8rem, 11.3vw, 8.4rem);
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: 0;
}

h2 {
  max-width: 760px;
  margin-bottom: 22px;
  font-family: var(--font-logo);
  font-size: clamp(2.35rem, 5vw, 4.6rem);
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  font-family: var(--font-body);
  font-size: 1.24rem;
  line-height: 1.1;
}

.hero-logotype {
  position: relative;
  width: fit-content;
  max-width: 100%;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.08);
  white-space: nowrap;
  -webkit-text-stroke: 1.7px rgba(255, 255, 255, 0.96);
}

.hero-logotype .lt-court {
  font-weight: 300;
  letter-spacing: -0.045em;
}

.hero-logotype .lt-amp {
  font-weight: 300;
}

.hero-logotype .lt-long {
  font-weight: 300;
  letter-spacing: 0.16em;
}

.hero-logotype b {
  font-weight: inherit;
}

.logo-line .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.55em) rotate(4deg);
  animation: char-in 640ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  animation-delay: calc(var(--char-i, 0) * 42ms + 300ms);
}

@keyframes char-in {
  to {
    opacity: 1;
    transform: translateY(0) rotate(0);
  }
}

.hero-logotype::before,
.hero-logotype::after {
  position: absolute;
  bottom: -18px;
  height: 4px;
  background: rgba(255, 255, 255, 0.84);
  content: "";
}

.hero-logotype::after {
  left: 0;
  width: 69%;
}

.hero-logotype::before {
  right: 0;
  width: 21%;
}

.hero-copy {
  max-width: 570px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.hero-actions,
.info-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-panel {
  position: absolute;
  right: max(20px, calc((100vw - var(--max)) / 2));
  bottom: 30px;
  left: max(20px, calc((100vw - var(--max)) / 2));
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.34);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(11, 24, 24, 0.34);
  backdrop-filter: blur(16px);
}

.hero-panel div {
  padding: 20px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-panel div:last-child {
  border-right: 0;
}

.hero-panel span {
  display: block;
  margin-bottom: 6px;
  font-family: var(--font-logo);
  font-weight: 300;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1;
}

.hero-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
}

section {
  padding: clamp(72px, 10vw, 132px) max(20px, calc((100vw - var(--max)) / 2));
}

.has-index {
  position: relative;
  overflow: hidden;
}

.has-index::before {
  position: absolute;
  top: clamp(16px, 3vw, 44px);
  right: clamp(10px, 2vw, 44px);
  z-index: 0;
  color: var(--ink);
  content: attr(data-index);
  font-family: var(--font-logo);
  font-size: clamp(9rem, 20vw, 19rem);
  font-weight: 300;
  line-height: 0.8;
  letter-spacing: -0.02em;
  opacity: 0.06;
  pointer-events: none;
}

.has-index > * {
  position: relative;
  z-index: 1;
}

.marquee {
  overflow: hidden;
  padding: clamp(26px, 4vw, 46px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 26s linear infinite;
}

.marquee-track span {
  flex: none;
  padding-right: 0.35em;
  color: rgba(var(--ink-rgb), 0.06);
  font-family: var(--font-logo);
  font-size: clamp(3rem, 7.5vw, 6.4rem);
  font-weight: 300;
  line-height: 1.25;
  white-space: nowrap;
  -webkit-text-stroke: 1.1px rgba(var(--ink-rgb), 0.55);
}

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

.intro {
  padding-top: clamp(86px, 10vw, 140px);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(380px, 1.08fr);
  gap: clamp(38px, 7vw, 90px);
  align-items: end;
}

.intro-copy p,
.experience-copy p,
.team-copy p,
.infos-card p {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.04rem;
}

.intro-media {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: 14px;
  align-items: end;
}

.intro-media img,
.gallery-grid img,
.service-feature-media img,
.experience-media video {
  filter: sepia(0.1) saturate(1.06) contrast(1.03);
}

.intro-media img {
  width: 100%;
  height: 530px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.intro-media img:first-child {
  height: 420px;
  margin-bottom: 46px;
}

.atelier-line {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(360px, 45vw, 520px);
  padding-top: clamp(52px, 7vw, 90px);
  padding-bottom: clamp(52px, 7vw, 90px);
  background:
    linear-gradient(120deg, rgba(24, 33, 35, 0.98), rgba(30, 86, 110, 0.84)),
    url("assets/images/salon-06.jpg") center / cover;
  color: var(--white);
}

.atelier-line h2 {
  max-width: 900px;
  margin: 0;
}

.atelier-line-panel {
  width: min(640px, 100%);
  margin: 0 auto;
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(11, 24, 24, 0.46);
  box-shadow: 0 22px 70px rgba(3, 16, 19, 0.22);
  backdrop-filter: blur(16px);
}

.atelier-line-panel p {
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.76);
}

.atelier-line-panel ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.atelier-line-panel li {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
}

.atelier-line-panel span {
  color: var(--white);
  font-weight: 900;
}

.section-heading,
.gallery-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 42px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading .section-kicker {
  margin-bottom: 14px;
}

.section-heading a {
  color: var(--teal);
  font-weight: 850;
  white-space: nowrap;
}

.section-heading-actions {
  justify-content: flex-end;
  margin-bottom: 28px;
}

.planity-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.planity-link::after {
  content: "↗";
  color: var(--clay);
  font-size: 0.95em;
}

.signatures {
  background:
    linear-gradient(180deg, rgba(227, 237, 241, 0.95), rgba(245, 241, 234, 0.62) 45%, var(--white) 100%),
    linear-gradient(90deg, rgba(43, 120, 156, 0.08), rgba(216, 176, 111, 0.08));
}

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

.service-card {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 330px;
  padding: clamp(24px, 3vw, 34px);
  border-right: 1px solid rgba(43, 120, 156, 0.18);
  border-bottom: 1px solid rgba(43, 120, 156, 0.18);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.service-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--clay), transparent);
  content: "";
  opacity: 0;
  transition: opacity 180ms ease;
}

.service-card:hover {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 48px rgba(30, 86, 110, 0.12);
  transform: translateY(-3px);
}

.service-card:focus-visible {
  outline: 3px solid rgba(43, 120, 156, 0.42);
  outline-offset: -3px;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card-featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 0.58fr);
  gap: 0;
  min-height: 360px;
  padding: 0;
  background: var(--ink);
  color: var(--white);
}

.service-card-featured .service-feature-copy {
  padding: clamp(24px, 3vw, 34px);
}

/* Dernière carte seule sur sa rangée: bandeau pleine largeur. */
.service-card-wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: clamp(20px, 4vw, 56px);
  align-items: center;
  min-height: 0;
}

.service-card-wide .service-index {
  margin-bottom: 0;
}

.service-card-wide h3 {
  margin-bottom: 8px;
}

.service-card-wide p {
  min-height: 0;
  margin-bottom: 0;
  max-width: 620px;
}

.service-card-wide .service-side {
  display: grid;
  gap: 10px;
  justify-items: end;
}

.service-card-wide .service-meta {
  padding-top: 0;
  border-top: 0;
}

.service-card-wide .service-booking {
  margin-top: 0;
}

.service-card-featured:hover {
  background: var(--ink);
}

.service-card-featured .service-index {
  color: #f2cf93;
}

.service-feature-copy {
  display: grid;
  align-content: space-between;
}

.service-feature-media {
  min-height: 100%;
  overflow: hidden;
}

.service-feature-media img {
  width: 100%;
  height: 100%;
  min-height: 285px;
  object-fit: cover;
  transition: transform 700ms ease;
}

.service-card-featured:hover .service-feature-media img {
  transform: scale(1.045);
}

.service-card-featured .service-meta {
  border-color: rgba(255, 255, 255, 0.18);
}

.service-card-featured .service-meta span {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.service-index {
  display: block;
  margin-bottom: 58px;
  color: var(--clay);
  font-family: var(--font-logo);
  font-weight: 300;
  font-size: 2rem;
}

.service-card p {
  min-height: 102px;
  color: var(--muted);
}

.service-card.service-card-featured p {
  color: rgba(255, 255, 255, 0.84);
}

.service-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.service-meta span {
  display: inline-flex;
  padding: 6px 10px;
  background: rgba(43, 120, 156, 0.11);
  color: var(--blue-deep);
  font-size: 0.78rem;
  font-weight: 850;
}

.service-booking {
  display: inline-flex;
  width: fit-content;
  margin-top: 16px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-booking::after {
  margin-left: 8px;
  content: "↗";
}

.service-card-featured .service-booking {
  color: #f2cf93;
}

.experience {
  display: grid;
  grid-template-columns: minmax(320px, 0.76fr) minmax(0, 1fr);
  gap: clamp(36px, 7vw, 90px);
  align-items: center;
  background: #e9eef0;
}

.experience-media video {
  width: 100%;
  aspect-ratio: 9 / 14;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.steps {
  display: grid;
  gap: 16px;
  padding: 0;
  margin: 34px 0 0;
  list-style: none;
  counter-reset: steps;
}

.steps li {
  position: relative;
  padding: 22px 22px 22px 70px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(23, 32, 31, 0.1);
}

.steps li::before {
  position: absolute;
  top: 24px;
  left: 22px;
  color: var(--brass);
  font-family: var(--font-logo);
  font-weight: 300;
  font-size: 1.8rem;
  line-height: 1;
  counter-increment: steps;
  content: counter(steps, decimal-leading-zero);
}

.steps span {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-weight: 900;
}

.gallery {
  background: var(--paper);
  padding-top: clamp(70px, 9vw, 116px);
  padding-right: clamp(14px, 2vw, 28px);
  padding-left: clamp(14px, 2vw, 28px);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-auto-rows: minmax(230px, 24vw);
  gap: 14px;
}

.gallery-grid figure {
  position: relative;
  min-height: 230px;
  margin: 0;
  overflow: hidden;
  background: #d7d3cc;
}

.gallery-grid figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  padding: 8px 10px;
  background: rgba(var(--paper-rgb), 0.86);
  color: var(--ink);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.3) sepia(0.08) contrast(1.06) brightness(0.99);
  transition: transform 700ms ease, filter 500ms ease;
}

.gallery-grid figure::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(160deg, rgba(13, 116, 123, 0.3), rgba(192, 154, 88, 0.22));
  content: "";
  opacity: 0.55;
  mix-blend-mode: multiply;
  transition: opacity 500ms ease;
  pointer-events: none;
}

.gallery-grid figure:hover::after {
  opacity: 0;
}

.gallery-grid figure:hover img {
  filter: sepia(0.08) saturate(1.08) contrast(1.04);
  transform: scale(1.045);
}

.gallery-grid figcaption {
  transition: transform 400ms cubic-bezier(0.2, 0.8, 0.2, 1), background 400ms ease;
}

.gallery-grid figure:hover figcaption {
  background: var(--brass);
  transform: translateY(-4px);
}

.gallery-large {
  grid-row: span 2;
}

.team-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
  background: var(--ink);
  color: var(--white);
}

.team-band h2 {
  max-width: 820px;
}

.team-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.team-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.team-list span {
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.84);
  font-weight: 800;
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.team-list span:hover {
  background: var(--brass);
  border-color: var(--brass);
  color: var(--ink);
  transform: translateY(-3px);
}

.reviews {
  background: var(--white);
}

.rating-badge {
  display: grid;
  grid-template-columns: auto minmax(140px, 240px);
  gap: 14px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
}

.rating-badge strong {
  font-family: var(--font-logo);
  font-weight: 300;
  font-size: 3rem;
  line-height: 1;
}

.rating-badge span {
  color: var(--muted);
  font-size: 0.9rem;
}

.quote-stage {
  display: grid;
  padding: clamp(26px, 4vw, 48px) 0 0;
  border-top: 1px solid var(--line);
}

.quote-giant {
  grid-area: 1 / 1;
  margin: 0;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 600ms ease, transform 600ms ease;
  pointer-events: none;
}

.quote-giant.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.quote-giant p {
  max-width: 980px;
  margin-bottom: 18px;
  font-family: var(--font-logo);
  font-weight: 300;
  font-size: clamp(1.7rem, 4vw, 3.3rem);
  line-height: 1.12;
}

.quote-giant cite {
  color: var(--muted);
  font-size: 0.9rem;
  font-style: normal;
}

.quote-dots {
  grid-area: 2 / 1;
  display: flex;
  gap: 10px;
  margin-top: 34px;
}

.quote-dots button {
  width: 34px;
  height: 4px;
  padding: 0;
  border: 0;
  background: rgba(var(--ink-rgb), 0.16);
  cursor: pointer;
  transition: background 200ms ease;
}

.quote-dots button.is-active {
  background: var(--teal);
}

.infos {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.48fr);
  gap: 14px;
  align-items: stretch;
  background:
    linear-gradient(rgba(247, 244, 238, 0.86), rgba(247, 244, 238, 0.9)),
    url("assets/images/salon-02.jpg") center / cover;
}

.infos-card,
.hours {
  padding: clamp(30px, 5vw, 56px);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.64);
  backdrop-filter: blur(10px);
}

.infos-card {
  display: grid;
  align-content: center;
}

.map-panel {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  min-height: 420px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.64);
  box-shadow: 0 24px 70px rgba(24, 33, 35, 0.12);
}

.map-panel-copy {
  display: grid;
  align-content: center;
  padding: clamp(30px, 5vw, 56px);
  background: var(--ink);
  color: var(--white);
}

.map-panel-copy .section-kicker {
  color: #f2cf93;
}

.map-panel-copy h3 {
  margin-bottom: 10px;
  font-family: var(--font-logo);
  font-size: clamp(1.9rem, 2.6vw, 2.6rem);
  font-weight: 300;
  white-space: nowrap;
}

.map-panel-copy p {
  color: rgba(255, 255, 255, 0.74);
}

.map-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 18px;
  color: #f2cf93;
  font-weight: 900;
}

.map-link::after {
  margin-left: 10px;
  content: "↗";
}

.map-panel iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  filter: saturate(0.86) contrast(1.03);
}

.hours h3 {
  margin-bottom: 22px;
}

.hours dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.hours div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.hours dt {
  font-weight: 850;
}

.hours dd {
  margin: 0;
  color: var(--muted);
  text-align: right;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 26px max(20px, calc((100vw - var(--max)) / 2));
  background: var(--ink);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--white);
  font-weight: 850;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.legal {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
  background: #f7f4ee;
}

.legal-heading {
  position: sticky;
  top: 112px;
}

.legal-heading h2 {
  max-width: 420px;
  margin-bottom: 12px;
}

.legal-heading p {
  max-width: 360px;
  color: var(--muted);
}

.legal-grid {
  display: grid;
  gap: 14px;
}

.legal-item {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
}

.legal-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 24px;
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}

.legal-item summary::-webkit-details-marker {
  display: none;
}

.legal-item summary::after {
  color: var(--clay);
  content: "+";
  font-family: var(--font-logo);
  font-size: 1.7rem;
  font-weight: 300;
  line-height: 1;
}

.legal-item[open] summary::after {
  content: "–";
}

.legal-content {
  padding: 0 24px 24px;
  color: var(--muted);
  font-size: 0.94rem;
}

.legal-content p {
  margin-bottom: 14px;
}

.legal-content ul {
  display: grid;
  gap: 8px;
  padding-left: 18px;
  margin: 0 0 18px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease var(--reveal-delay, 0ms), transform 700ms ease var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.gallery-grid figure.reveal img,
.intro-media.reveal img,
.experience-media.reveal video {
  clip-path: inset(0 0 100% 0);
  transition:
    clip-path 900ms cubic-bezier(0.2, 0.8, 0.2, 1) var(--reveal-delay, 0ms),
    transform 700ms ease,
    filter 500ms ease;
}

.gallery-grid figure.reveal.is-visible img,
.intro-media.reveal.is-visible img,
.experience-media.reveal.is-visible video {
  clip-path: inset(0 0 0% 0);
}

@keyframes loader-sweep {
  0% {
    transform: translateX(-110%);
  }

  100% {
    transform: translateX(250%);
  }
}

@keyframes loader-auto-hide {
  to {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}

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

  .hero-video,
  .experience-media video {
    display: none;
  }

  .experience-media {
    aspect-ratio: 9 / 14;
    background: url("assets/images/salon-04.jpg") center / cover;
    box-shadow: var(--shadow);
  }

  .site-loader,
  .loader-track span {
    animation: none;
  }

  .hero {
    background: linear-gradient(rgba(8, 17, 18, 0.78), rgba(8, 17, 18, 0.58)), url("assets/images/hero-poster.jpg") center / cover;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .brand {
    min-width: 0;
  }

  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    top: 78px;
    right: 14px;
    left: 14px;
    display: grid;
    justify-content: stretch;
    gap: 0;
    padding: 18px;
    background: rgba(247, 244, 238, 0.98);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    padding: 16px 8px;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

  .intro-grid,
  .atelier-line,
  .experience,
  .team-band,
  .infos {
    grid-template-columns: 1fr;
  }

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

  .service-card-featured {
    grid-column: span 2;
  }

  .section-heading,
  .gallery-heading {
    display: block;
  }

  .section-heading-actions {
    display: flex;
    justify-content: flex-start;
  }

  .section-heading a {
    display: inline-block;
    margin-top: 8px;
  }

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

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

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

  .map-panel {
    grid-template-columns: 1fr;
  }

  .legal-heading {
    position: static;
  }
}

@media (max-width: 680px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    min-height: 60px;
  }

  .brand {
    min-width: 0;
  }

  .brand-sign {
    width: 190px;
  }

  .brand-sign-text {
    font-size: 1.48rem;
  }

  .hero {
    min-height: clamp(720px, 88vh, 860px);
  }

  .hero-overlay {
    background:
      radial-gradient(circle at 70% 18%, rgba(43, 120, 156, 0.22) 0, rgba(43, 120, 156, 0) 32%),
      linear-gradient(180deg, rgba(8, 17, 18, 0.65) 0%, rgba(8, 17, 18, 0.76) 70%, rgba(245, 241, 234, 1) 100%),
      linear-gradient(90deg, rgba(8, 17, 18, 0.55), rgba(8, 17, 18, 0.18));
  }

  .hero-side-note {
    display: none;
  }

  .hero-content {
    width: calc(100% - 40px);
    padding: 118px 0 292px;
  }

  h1 {
    font-size: clamp(2.7rem, 12.5vw, 4rem);
  }

  .hero-logotype .lt-court {
    letter-spacing: -0.02em;
  }

  .hero-logotype .lt-long {
    letter-spacing: 0.06em;
  }

  h2 {
    font-size: clamp(2.15rem, 11.5vw, 3.2rem);
  }

  .hero-logotype::before,
  .hero-logotype::after {
    bottom: -14px;
    height: 3px;
  }

  .hero-actions,
  .info-actions {
    display: grid;
  }

  .hero-panel {
    grid-template-columns: 1fr;
    bottom: 20px;
  }

  .hero-panel div {
    padding: 14px 18px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .hero-panel div:last-child {
    border-bottom: 0;
  }

  section {
    padding: 68px 20px;
  }

  .intro-media {
    grid-template-columns: 1fr;
  }

  .intro-media img,
  .intro-media img:first-child {
    height: auto;
    min-height: 300px;
    margin: 0;
  }

  .service-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .service-card-featured {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }

  .service-card-wide {
    grid-template-columns: 1fr;
    gap: 14px;
    align-items: start;
  }

  .service-card-wide .service-side {
    justify-items: start;
  }

  .service-feature-media img {
    min-height: 220px;
  }

  .service-card {
    min-height: auto;
  }

  .service-index {
    margin-bottom: 28px;
  }

  .service-card p {
    min-height: auto;
  }

  .gallery-large {
    grid-row: auto;
  }

  .rating-badge {
    grid-template-columns: 1fr;
  }

  .site-footer {
    display: grid;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .map-panel {
    min-height: auto;
  }

  .map-panel iframe {
    min-height: 340px;
  }

  .legal-item summary {
    padding: 20px;
  }

  .legal-content {
    padding: 0 20px 22px;
  }
}
