:root {
  --navy: #041e30;
  --navy-deep: #021522;
  --terracotta: #98472f;
  --terracotta-deep: #783522;
  --brown: #38251f;
  --smoked-brown: #5b443c;
  --ivory: #f3efe8;
  --mineral: #dfd8ce;
  --ink: #171818;
  --cyan: #16b9e7;
  --violet: #745fd9;
  --white: #fffdf8;
  --washi-texture: url("assets/images/washi-texture.webp");
  --content: 1380px;
  --page-padding: clamp(24px, 4.25vw, 72px);
  --serif: "Yu Mincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Noto Serif JP", serif;
  --sans: "Avenir Next", "Helvetica Neue", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--navy);
  font-family: var(--sans);
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

button,
a {
  color: inherit;
}

button {
  font: inherit;
}

a {
  text-decoration: none;
}

:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 10px 16px;
  color: var(--navy);
  background: var(--white);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 26px var(--page-padding);
  color: var(--white);
  transition: background-color 220ms ease, padding 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  position: fixed;
  padding-block: 12px;
  background: color-mix(in srgb, var(--navy) 94%, transparent);
  box-shadow: 0 1px 0 rgb(255 255 255 / 12%);
  backdrop-filter: blur(14px);
}

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

.brand__logo {
  position: relative;
  display: block;
  width: clamp(210px, 19vw, 280px);
}

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

.brand__mark {
  position: relative;
  display: grid;
  width: 60px;
  height: 60px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  overflow: hidden;
  font-family: Georgia, serif;
  font-size: 30px;
  font-weight: 300;
}

.brand__mark::before,
.brand__mark::after {
  position: absolute;
  content: "";
  background: currentColor;
  opacity: 0.55;
}

.brand__mark::before {
  width: 1px;
  height: 72px;
  transform: rotate(-22deg);
}

.brand__mark::after {
  width: 46px;
  height: 1px;
}

.brand__n,
.brand__u {
  position: absolute;
  line-height: 1;
}

.brand__n {
  top: 8px;
  left: 10px;
}

.brand__u {
  right: 8px;
  bottom: 6px;
  font-size: 25px;
}

.brand__type {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand__name {
  font-family: "Avenir Next Condensed", var(--sans);
  font-size: clamp(18px, 1.8vw, 27px);
  font-weight: 300;
  letter-spacing: 0.09em;
  line-height: 1;
  white-space: nowrap;
}

.brand__sub {
  padding-left: 0.3em;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.48em;
  text-transform: lowercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 50px);
  font-family: var(--serif);
  font-size: 15px;
  letter-spacing: 0.08em;
}

.site-nav > a:not(.button) {
  position: relative;
  padding-block: 10px;
}

.site-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 1px;
  background: var(--cyan);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.site-nav > a:not(.button):hover::after,
.site-nav > a:not(.button):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  border: 1px solid transparent;
  font-family: var(--serif);
  transition: background-color 180ms ease, border-color 180ms ease;
}

.button--terracotta {
  background: var(--terracotta);
}

.button--terracotta:hover,
.button--terracotta:focus-visible {
  border-color: rgb(255 255 255 / 60%);
  background: var(--terracotta-deep);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 1px;
  margin: 6px 0;
  background: currentColor;
  transition: transform 200ms ease, opacity 200ms ease;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  place-items: stretch;
  color: var(--white);
  background: var(--navy);
}

.hero__image,
.hero__veil {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__image {
  object-fit: cover;
  object-position: center;
}

.hero__veil {
  background:
    linear-gradient(90deg, var(--navy) 0%, rgb(4 30 48 / 97%) 27%, rgb(4 30 48 / 48%) 52%, transparent 76%),
    linear-gradient(0deg, rgb(2 21 34 / 24%), transparent 60%);
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(100%, var(--content));
  align-items: center;
  margin: 0 auto;
  padding: 138px var(--page-padding) 76px;
}

.hero__copy {
  width: min(610px, 52vw);
  margin-top: 42px;
}

.hero h1,
.hero__lead,
.hero__description,
.signature h2,
.salon-preview h2 {
  font-family: var(--serif);
  font-weight: 400;
}

.hero h1 {
  margin: 0;
  font-size: clamp(39px, 4.2vw, 67px);
  letter-spacing: 0.09em;
  line-height: 1.35;
}

.hero__lead {
  margin: 12px 0 34px;
  font-size: clamp(20px, 1.85vw, 29px);
  letter-spacing: 0.14em;
}

.hero__description {
  margin: 44px 0 0;
  font-size: clamp(14px, 1.12vw, 17px);
  letter-spacing: 0.13em;
  line-height: 2.1;
}

.prism-line {
  position: relative;
  width: min(100%, 660px);
  height: 1px;
  background: linear-gradient(90deg, #d1512c 0 30%, #7761d9 63%, var(--cyan) 100%);
}

.hero__copy > .prism-line {
  width: min(100%, 410px);
}

.ghost-mark {
  position: absolute;
  z-index: 1;
  top: 21%;
  left: 4.5%;
  width: 240px;
  aspect-ratio: 546 / 564;
  background: rgb(255 255 255 / 10%);
  -webkit-mask-image: url("assets/images/logo-symbol.png");
  mask-image: url("assets/images/logo-symbol.png");
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  mask-mode: luminance;
}

.signature {
  position: relative;
  min-height: clamp(560px, 48vw, 780px);
  overflow: hidden;
  color: var(--white);
  background: #1c0c07;
}

.signature::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, rgb(24 8 4 / 78%) 0%, rgb(24 8 4 / 64%) 30%, rgb(24 8 4 / 16%) 58%, transparent 76%);
  content: "";
  pointer-events: none;
}

.signature__inner {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(100%, var(--content));
  min-height: inherit;
  align-items: stretch;
  margin: 0 auto;
  padding: clamp(54px, 6vw, 92px) var(--page-padding) clamp(46px, 5vw, 76px);
}

.signature__content {
  display: grid;
  width: min(46%, 610px);
  min-width: 0;
  align-self: stretch;
  grid-template-rows: auto auto 1fr auto;
}

.eyebrow {
  margin: 0 0 22px;
  font-family: "Avenir Next Condensed", var(--sans);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.36em;
}

.eyebrow--dark {
  color: var(--terracotta);
}

.signature__copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0;
  transition: opacity 220ms ease, transform 300ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.signature__content.is-changing .signature__copy,
.signature__content.is-changing .carousel-counter {
  opacity: 0;
  transform: translateY(7px);
}

.signature__rule {
  width: 80px;
  height: 2px;
  margin: 24px 0 clamp(42px, 4.2vw, 66px);
  background: #c87947;
}

.signature__category {
  margin: 0 0 22px;
  color: rgb(255 255 255 / 68%);
  font-family: "Avenir Next Condensed", var(--sans);
  font-size: clamp(12px, 1vw, 15px);
  letter-spacing: 0.28em;
}

.signature h2 {
  margin: 0;
  white-space: nowrap;
  font-size: clamp(42px, 4.2vw, 68px);
  letter-spacing: 0.12em;
}

.signature__description {
  margin: clamp(28px, 3vw, 44px) 0 0;
  color: rgb(255 255 255 / 76%);
  font-family: var(--serif);
  font-size: clamp(13px, 1.12vw, 17px);
  letter-spacing: 0.13em;
  line-height: 2.05;
  white-space: pre-line;
}

.carousel-controls {
  display: grid;
  width: min(100%, 440px);
  grid-template-columns: minmax(110px, 1fr) 46px 1px 46px;
  gap: 18px;
  align-items: center;
  align-self: end;
  margin: 0;
}

.carousel-counter {
  min-width: 78px;
  font-family: var(--serif);
  font-size: 17px;
  letter-spacing: 0.05em;
  transition: opacity 180ms ease, transform 260ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.carousel-divider {
  width: 1px;
  height: 34px;
  background: rgb(255 255 255 / 34%);
}

.carousel-arrow {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid transparent;
  color: inherit;
  background: transparent;
  cursor: pointer;
  font-size: 26px;
  font-weight: 200;
  transition: border-color 180ms ease, background-color 180ms ease;
}

.carousel-arrow:hover,
.carousel-arrow:focus-visible {
  border-color: rgb(255 255 255 / 50%);
  background: rgb(255 255 255 / 8%);
}

.signature__visual {
  position: absolute;
  z-index: 0;
  inset: 0;
}

.signature__frame {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #1c0c07;
}

.signature__swiper,
.signature__swiper .swiper-wrapper,
.signature__swiper .swiper-slide {
  width: 100%;
  height: 100%;
}

.signature__swiper .swiper-wrapper {
  position: relative;
  display: block;
  transform: none !important;
}

.signature__swiper {
  position: absolute;
  inset: 0;
  background: #1c0c07;
}

.signature__swiper .swiper-slide {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  background: #1c0c07;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: opacity 900ms cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: opacity;
}

.signature__swiper .swiper-slide.is-signature-active {
  z-index: 1;
  opacity: 1;
}

.signature__swiper .swiper-slide.is-signature-transitioning {
  z-index: 2;
  opacity: 1;
}

.signature__picture {
  position: absolute;
  display: block;
  overflow: hidden;
  inset: 0;
}

.signature__artwork {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: filter 260ms ease;
}

.signature[data-slide-theme="nuance"] .signature__artwork {
  filter: brightness(1.18);
}

.signature__shader {
  position: absolute;
  z-index: 3;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  transform: translateZ(0);
  will-change: opacity;
}

.signature__shader.is-active {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .signature__shader {
    display: none;
  }
}

.salon-preview {
  position: relative;
  display: grid;
  min-height: 260px;
  grid-template-columns: minmax(380px, 1fr) minmax(520px, 1.35fr);
  overflow: hidden;
  background: var(--ivory);
}

.salon-preview__copy {
  z-index: 1;
  align-self: center;
  padding: 36px var(--page-padding);
}

.salon-preview h2 {
  margin: 0 0 14px;
  font-size: clamp(29px, 3vw, 45px);
  letter-spacing: 0.12em;
}

.salon-preview__copy > p:not(.eyebrow) {
  max-width: 480px;
  margin: 0 0 22px;
  font-family: var(--serif);
  font-size: 14px;
  letter-spacing: 0.07em;
  line-height: 1.9;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 80px;
  padding-block: 8px;
  border-bottom: 1px solid rgb(23 24 24 / 35%);
  font-family: var(--serif);
  letter-spacing: 0.1em;
}

.salon-preview__image {
  min-width: 0;
  height: 260px;
  min-height: 0;
}

.salon-preview__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 39%;
}

.salon-preview__mark {
  position: absolute;
  top: 50%;
  left: -90px;
  width: 290px;
  aspect-ratio: 546 / 564;
  background: rgb(152 71 47 / 11%);
  -webkit-mask-image: url("assets/images/logo-symbol.png");
  mask-image: url("assets/images/logo-symbol.png");
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  mask-mode: luminance;
  transform: translateY(-50%);
}

.gallery {
  position: relative;
  min-height: clamp(440px, 44vw, 500px);
  overflow: hidden;
  padding: clamp(30px, 3vw, 38px) 0 clamp(26px, 2.5vw, 32px);
  color: var(--white);
  background: var(--smoked-brown);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 18%);
}

.gallery::before {
  position: absolute;
  top: 44%;
  left: 50%;
  width: min(1180px, 92vw);
  aspect-ratio: 2.8 / 1;
  border: 1px solid rgb(255 255 255 / 10%);
  border-radius: 50%;
  content: "";
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.gallery__header,
.gallery__footer {
  position: relative;
  z-index: 4;
  display: flex;
  width: min(100%, var(--content));
  align-items: flex-end;
  justify-content: space-between;
  margin: 0 auto;
  padding-inline: var(--page-padding);
}

.gallery__eyebrow {
  margin: 0 0 12px;
  color: rgb(255 255 255 / 58%);
  font-family: "Avenir Next Condensed", var(--sans);
  font-size: 12px;
  letter-spacing: 0.34em;
}

.gallery h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(29px, 3vw, 45px);
  font-weight: 400;
  letter-spacing: 0.12em;
  line-height: 1.1;
}

.gallery__navigation {
  display: flex;
  gap: 10px;
}

.gallery__arrow {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgb(255 255 255 / 36%);
  border-radius: 50%;
  color: var(--white);
  background: rgb(20 7 4 / 16%);
  cursor: pointer;
  font-size: 19px;
  transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.gallery__arrow:hover,
.gallery__arrow:focus-visible {
  border-color: var(--cyan);
  background: rgb(4 30 48 / 48%);
  transform: translateY(-2px);
}

.gallery__stage {
  position: relative;
  z-index: 2;
  width: min(calc(100% - (var(--page-padding) * 2)), 660px);
  margin: clamp(18px, 2vw, 24px) auto clamp(16px, 1.8vw, 22px);
  overflow: visible;
  perspective: 1400px;
}

.gallery__slide {
  position: relative;
  width: clamp(150px, 14vw, 220px);
  aspect-ratio: 0.76 / 1;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgb(255 255 255 / 26%);
  background: #1b0c08;
  box-shadow: 0 18px 44px rgb(22 7 4 / 42%);
  transform-origin: center bottom;
  transition: border-color 360ms ease, filter 360ms ease;
}

.gallery__slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.84) brightness(0.82);
  transition: filter 500ms ease, transform 900ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.gallery__slide figcaption {
  position: absolute;
  z-index: 2;
  right: 16px;
  bottom: 14px;
  left: 16px;
  color: var(--white);
  font-family: var(--serif);
  font-size: 14px;
  letter-spacing: 0.1em;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 360ms ease, transform 360ms ease;
}

.gallery__slide figcaption span {
  display: block;
  margin-bottom: 7px;
  color: rgb(255 255 255 / 62%);
  font-family: "Avenir Next Condensed", var(--sans);
  font-size: 9px;
  letter-spacing: 0.26em;
}

.gallery__slide.swiper-slide-active {
  border-color: rgb(255 255 255 / 68%);
}

.gallery__slide.swiper-slide-active img {
  filter: saturate(1.05) brightness(1);
  transform: scale(1.025);
}

.gallery__slide.swiper-slide-active figcaption {
  opacity: 1;
  transform: translateY(0);
}

.gallery--fallback .gallery__stage {
  height: clamp(230px, 20vw, 290px);
}

.gallery--fallback .gallery__stage .swiper-wrapper {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  transform: none !important;
}

.gallery--fallback .gallery__slide {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 50%;
  height: 100%;
  opacity: 0;
  transform: translateX(-50%) scale(0.58);
  transition: opacity 420ms ease, transform 720ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.gallery--fallback .gallery__slide.is-fallback-active {
  z-index: 3;
  opacity: 1;
  transform: translateX(-50%) scale(1);
}

.gallery--fallback .gallery__slide.is-fallback-previous {
  z-index: 1;
  opacity: 0.58;
  transform: translateX(-145%) scale(0.72) rotateY(24deg);
}

.gallery--fallback .gallery__slide.is-fallback-next {
  z-index: 1;
  opacity: 0.58;
  transform: translateX(45%) scale(0.72) rotateY(-24deg);
}

.gallery--fallback .gallery__slide.is-fallback-active img {
  filter: saturate(1.05) brightness(1);
}

.gallery--fallback .gallery__slide.is-fallback-active figcaption {
  opacity: 1;
  transform: translateY(0);
}

.gallery__footer {
  align-items: center;
  justify-content: flex-end;
}

.gallery__pagination {
  flex: 0 0 auto;
  width: auto;
  color: rgb(255 255 255 / 72%);
  font-family: var(--serif);
  font-size: 14px;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

.gallery__pagination .swiper-pagination-current {
  color: var(--white);
  font-size: 22px;
}

.gallery__cta {
  display: inline-grid;
  min-width: min(100%, 320px);
  grid-template-columns: 24px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 11px 16px;
  border-bottom: 1px solid rgb(255 255 255 / 42%);
  font-family: var(--serif);
  font-size: 14px;
  letter-spacing: 0.1em;
  transition: border-color 180ms ease, background-color 180ms ease;
}

.gallery__cta:hover,
.gallery__cta:focus-visible {
  border-color: var(--cyan);
  background: rgb(4 30 48 / 24%);
}

.gallery__cta-arrow {
  font-size: 21px;
  transition: transform 180ms ease;
}

.gallery__cta:hover .gallery__cta-arrow,
.gallery__cta:focus-visible .gallery__cta-arrow {
  transform: translateX(5px);
}

.gallery__instagram-icon {
  position: relative;
  display: block;
  width: 22px;
  height: 22px;
  border: 1.5px solid currentColor;
  border-radius: 7px;
}

.gallery__instagram-icon::before,
.gallery__instagram-icon::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.gallery__instagram-icon::before {
  inset: 5px;
  border: 1.5px solid currentColor;
}

.gallery__instagram-icon::after {
  top: 3px;
  right: 3px;
  width: 3px;
  height: 3px;
  background: currentColor;
}

.site-footer {
  display: flex;
  min-height: 105px;
  flex-direction: row;
  justify-content: center;
  gap: 34px;
  align-items: center;
  padding: 22px var(--page-padding);
  text-align: center;
  color: var(--white);
  background: var(--navy);
}

.brand--footer .brand__name {
  font-size: 18px;
}

.brand--footer .brand__sub {
  font-size: 7px;
}

.brand--footer .brand__logo {
  width: 230px;
}

.site-footer small {
  font-family: var(--serif);
  font-size: 11px;
  white-space: nowrap;
  opacity: 0.78;
}

.signature,
.salon-preview,
.gallery,
.site-footer {
  background-image: var(--washi-texture);
  background-position: center;
  background-repeat: repeat;
  background-size: 640px auto;
  background-blend-mode: multiply;
}

.placeholder-toast {
  position: fixed;
  z-index: 100;
  right: 18px;
  bottom: 18px;
  max-width: min(380px, calc(100vw - 36px));
  padding: 14px 18px;
  color: var(--navy);
  background: var(--white);
  box-shadow: 0 10px 30px rgb(0 0 0 / 24%);
  font-size: 13px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

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

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

@media (max-width: 980px) {
  .brand__mark {
    width: 50px;
    height: 50px;
    font-size: 25px;
  }

  .brand__u {
    font-size: 21px;
  }

  .nav-toggle {
    position: relative;
    z-index: 22;
    display: block;
    color: var(--white);
    cursor: pointer;
  }

  .nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .site-nav {
    position: absolute;
    z-index: 21;
    top: 100%;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    align-items: stretch;
    padding: 12px var(--page-padding) 22px;
    background: rgb(4 30 48 / 98.5%);
    box-shadow: 0 16px 32px rgb(0 0 0 / 22%);
    opacity: 0;
    pointer-events: none;
    transform: scaleY(0);
    transform-origin: top;
    visibility: hidden;
    transition: opacity 240ms ease, transform 240ms ease, visibility 240ms ease;
  }

  .nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: scaleY(1);
    visibility: visible;
  }

  .site-nav > a {
    width: 100%;
    padding: 12px 8px;
    border-bottom: 1px solid rgb(255 255 255 / 20%);
    font-size: 16px;
  }

  .site-nav .button {
    min-height: 44px;
    margin-top: 10px;
    border: 1px solid rgb(255 255 255 / 18%);
  }

  .hero__copy {
    width: min(590px, 70vw);
  }

  .signature__inner {
    padding-inline: max(var(--page-padding), 5vw);
  }

  .gallery__slide {
    width: clamp(230px, 34vw, 330px);
  }
}

@media (max-width: 720px) {
  :root {
    --page-padding: 24px;
  }

  .site-header {
    padding-block: 14px;
  }

  .site-header.is-scrolled {
    padding-block: 9px;
  }

  .brand {
    gap: 0;
  }

  .brand__logo {
    width: 205px;
  }

  .brand__mark {
    width: 43px;
    height: 43px;
    font-size: 21px;
  }

  .brand__u {
    font-size: 18px;
  }

  .brand__name {
    font-size: 17px;
  }

  .brand__sub {
    font-size: 6px;
  }

  .hero {
    min-height: max(720px, 100svh);
  }

  .hero__image {
    top: 245px;
    height: calc(100% - 245px);
    object-position: 61% center;
  }

  .hero__veil {
    background:
      linear-gradient(180deg, var(--navy) 0 34%, rgb(4 30 48 / 82%) 45%, rgb(4 30 48 / 12%) 72%, rgb(2 21 34 / 42%) 100%),
      linear-gradient(90deg, rgb(4 30 48 / 72%), transparent 88%);
  }

  .hero__inner {
    align-items: flex-start;
    padding-top: 112px;
    padding-bottom: 34px;
  }

  .hero__copy {
    width: 100%;
    margin-top: 0;
  }

  .hero__copy > .prism-line {
    width: 72%;
  }

  .hero h1 {
    max-width: 320px;
    font-size: clamp(32px, 9.5vw, 44px);
    line-height: 1.55;
  }

  .hero__lead {
    margin-top: 4px;
    font-size: 17px;
  }

  .hero__description {
    position: absolute;
    top: 350px;
    left: var(--page-padding);
    width: calc(100vw - (var(--page-padding) * 2));
    margin: 0;
    font-size: 12px;
    line-height: 1.9;
    text-shadow: 0 1px 10px rgb(0 0 0 / 70%);
  }

  .ghost-mark {
    top: 104px;
    right: -70px;
    left: auto;
    width: 190px;
    height: 190px;
    font-size: 98px;
  }

  .signature__inner {
    min-height: inherit;
    padding: 44px var(--page-padding) 32px;
  }

  .signature__content {
    width: 100%;
  }

  .eyebrow {
    margin-bottom: 16px;
    font-size: 14px;
  }

  .signature__copy {
    min-height: 0;
    padding: 0;
  }

  .signature {
    min-height: 680px;
  }

  .signature::after {
    background:
      linear-gradient(180deg, rgb(22 7 4 / 70%) 0%, rgb(22 7 4 / 28%) 50%, rgb(22 7 4 / 84%) 100%),
      linear-gradient(90deg, rgb(22 7 4 / 78%) 0%, rgb(22 7 4 / 26%) 100%);
  }

  .signature__rule {
    width: 54px;
    margin: 16px 0 30px;
  }

  .signature__category {
    margin-bottom: 12px;
    font-size: 10px;
  }

  .signature h2 {
    font-size: clamp(30px, 8.6vw, 38px);
    letter-spacing: 0.09em;
  }

  .signature__description {
    max-width: 310px;
    margin-top: 22px;
    font-size: 12px;
    letter-spacing: 0.08em;
    line-height: 1.9;
  }

  .carousel-controls {
    width: 100%;
    grid-template-columns: minmax(100px, 1fr) 38px 1px 38px;
    gap: 10px;
    margin: 4px 0 0;
  }

  .carousel-arrow {
    width: 38px;
    height: 38px;
  }

  .signature__swiper .swiper-slide {
    --signature-mobile-focus-x: 50%;
    --signature-mobile-focus-y: 50%;
  }

  .signature__swiper .swiper-slide[data-slide-key="dichroic-red"] {
    --signature-mobile-focus-x: 58%;
  }

  .signature__swiper .swiper-slide[data-slide-key="dichroic-blue"],
  .signature__swiper .swiper-slide[data-slide-key="traditional"] {
    --signature-mobile-focus-x: 54%;
  }

  .signature__swiper .swiper-slide[data-slide-key="embedded"] {
    --signature-mobile-focus-x: 62%;
  }

  .signature__swiper .swiper-slide[data-slide-key="simple"] {
    --signature-mobile-focus-x: 52%;
  }

  .signature__artwork {
    object-position: var(--signature-mobile-focus-x) var(--signature-mobile-focus-y);
  }

  .salon-preview {
    display: flex;
    min-height: 0;
    flex-direction: column;
  }

  .salon-preview__copy {
    padding-block: 42px 34px;
  }

  .salon-preview h2 {
    font-size: 29px;
  }

  .salon-preview__image {
    height: 210px;
    min-height: 0;
  }

  .salon-preview__image img {
    object-position: center 42%;
  }

  .salon-preview__mark {
    top: 30px;
    right: -35px;
    left: auto;
    font-size: 190px;
    transform: none;
  }

  .gallery {
    min-height: 420px;
    padding-block: 28px 24px;
  }

  .gallery::before {
    top: 43%;
    width: 160vw;
  }

  .gallery__header,
  .gallery__footer {
    padding-inline: var(--page-padding);
  }

  .gallery__eyebrow {
    margin-bottom: 9px;
    font-size: 9px;
  }

  .gallery h2 {
    font-size: 29px;
  }

  .gallery__arrow {
    width: 36px;
    height: 36px;
    font-size: 17px;
  }

  .gallery__stage {
    margin-block: 20px 16px;
  }

  .gallery__slide {
    width: min(48vw, 190px);
    box-shadow: 0 16px 34px rgb(22 7 4 / 40%);
  }

  .gallery__slide figcaption {
    right: 18px;
    bottom: 18px;
    left: 18px;
    font-size: 14px;
  }

  .gallery--fallback .gallery__stage {
    height: 250px;
  }

  .gallery--fallback .gallery__slide.is-fallback-previous {
    transform: translateX(-128%) scale(0.68) rotateY(22deg);
  }

  .gallery--fallback .gallery__slide.is-fallback-next {
    transform: translateX(28%) scale(0.68) rotateY(-22deg);
  }

  .gallery__footer {
    gap: 14px;
    align-items: center;
    flex-direction: row;
  }

  .gallery__pagination {
    align-self: flex-start;
  }

  .gallery__cta {
    width: min(100%, 270px);
    min-width: 0;
    margin-left: auto;
    padding-block: 10px;
    font-size: 13px;
  }

  .site-footer {
    min-height: 120px;
    flex-direction: column;
    gap: 12px;
    padding-block: 24px 20px;
  }

  .brand--footer {
    width: auto;
  }

  .site-footer small {
    font-size: 9px;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
