:root {
  --white: #fffdfb;
  --base: #fbf6f3;
  --greige: #f5ebe7;
  --ink: #3b2c2b;
  --text: #665552;
  --accent: #b9858c;
  --accent-dark: #8d5e66;
  --accent-light: #d7b0b5;
  --line: #e8d8d3;
  --hpb: #9f1547;
  --line-green: #06c755;
  --serif: "Shippori Mincho", serif;
  --sans: "Zen Kaku Gothic New", sans-serif;
  --en: "Cormorant Garamond", serif;
  --shadow: 0 22px 60px rgba(81, 55, 55, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--base);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 300;
  letter-spacing: 0.06em;
  line-break: strict;
  line-height: 2;
  -webkit-font-smoothing: antialiased;
}

body.is-locked {
  overflow: hidden;
}

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

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

button {
  color: inherit;
  font: inherit;
}

h1,
h2,
h3 {
  color: var(--ink);
  text-wrap: balance;
}

p,
li,
dd {
  text-wrap: pretty;
}

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

.skip-link {
  background: var(--ink);
  color: #fff;
  left: 16px;
  padding: 8px 16px;
  position: fixed;
  top: -100px;
  z-index: 1000;
}

.skip-link:focus {
  top: 16px;
}

.wrap {
  margin: 0 auto;
  max-width: 1040px;
}

.section {
  padding: 126px 24px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.section-heading {
  margin-bottom: 58px;
  max-width: 720px;
}

.section-heading--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-number {
  align-items: center;
  color: var(--accent-dark);
  display: flex;
  font-family: var(--en);
  font-size: 14px;
  font-style: italic;
  gap: 14px;
  letter-spacing: 0.25em;
  margin-bottom: 18px;
}

.section-number::after {
  background: var(--accent-light);
  content: "";
  height: 1px;
  width: 44px;
}

.section-heading--center .section-number {
  justify-content: center;
}

.section-heading--center .section-number::before {
  background: var(--accent-light);
  content: "";
  height: 1px;
  width: 44px;
}

.section-heading h2 {
  font-family: var(--serif);
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.85;
  text-wrap: balance;
  word-break: auto-phrase;
}

.heading-line {
  display: block;
  white-space: nowrap;
}

.section-heading > p:last-child:not(.section-number) {
  font-size: 14px;
  line-height: 2.5;
  margin-top: 18px;
}

.site-header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  left: 0;
  padding: 17px 28px;
  position: fixed;
  right: 0;
  top: 0;
  transition: background 0.3s, border-color 0.3s, padding 0.3s;
  z-index: 100;
}

.site-header.is-scrolled {
  backdrop-filter: blur(14px);
  background: rgba(255, 253, 251, 0.93);
  border-bottom: 1px solid var(--line);
  padding-bottom: 11px;
  padding-top: 11px;
}

.logo {
  color: var(--ink);
  line-height: 1;
}

.logo span {
  display: block;
  font-family: var(--en);
  font-size: 31px;
  font-style: italic;
  letter-spacing: 0.22em;
}

.logo small {
  color: var(--accent-dark);
  display: block;
  font-size: 8px;
  letter-spacing: 0.2em;
  margin-top: 6px;
}

.global-nav {
  display: flex;
  gap: clamp(15px, 2vw, 28px);
}

.global-nav a {
  color: var(--ink);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  position: relative;
}

.global-nav a::after {
  background: var(--accent);
  bottom: -5px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transition: transform 0.3s;
  width: 100%;
}

.global-nav a:hover::after {
  transform: scaleX(1);
}

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

.mini-cta {
  align-items: center;
  border-radius: 999px;
  color: #fff;
  display: flex;
  height: 39px;
  justify-content: center;
  padding: 0 16px;
}

.mini-cta img {
  height: 17px;
  object-fit: contain;
  width: auto;
}

.mini-cta span {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-left: 7px;
}

.mini-cta--hpb,
.action-btn--hpb {
  background: var(--hpb);
}

.action-btn--hpb-sub {
  background: #fff;
  border: 1px solid var(--hpb);
  color: var(--hpb);
}

.mini-cta--line,
.action-btn--line {
  background: var(--line-green);
}

.mini-cta--line img {
  height: 19px;
}

.nav-toggle {
  align-items: center;
  background: transparent;
  border: 0;
  cursor: pointer;
  display: none;
  flex-direction: column;
  gap: 5px;
  height: 38px;
  justify-content: center;
  width: 38px;
}

.nav-toggle span {
  background: var(--ink);
  height: 1.5px;
  transition: 0.3s;
  width: 21px;
}

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

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

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

.drawer {
  align-items: center;
  backdrop-filter: blur(12px);
  background: rgba(255, 253, 251, 0.98);
  display: flex;
  flex-direction: column;
  inset: 0;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  transition: opacity 0.35s;
  z-index: 98;
}

.drawer.is-open {
  opacity: 1;
  pointer-events: auto;
}

.drawer a {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 17px;
  letter-spacing: 0.16em;
  padding: 12px 24px;
}

.hero {
  padding: 88px 16px 0;
}

.hero-media {
  background: #cdb9b2;
  border-radius: 16px;
  height: calc(100svh - 112px);
  min-height: 650px;
  overflow: hidden;
  position: relative;
}

.hero-autoplay-fallback {
  display: none;
  inset: 0;
  position: absolute;
}

.hero-autoplay-fallback img {
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  width: 100%;
}

.hero-media.is-autoplay-blocked .hero-autoplay-fallback {
  display: block;
}

.hero-media.is-autoplay-blocked .hero-video {
  display: none;
}

.hero-video {
  filter: brightness(1.06) saturate(0.94);
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: center 42%;
  opacity: 0;
  position: absolute;
  transition: opacity 1.2s ease;
  width: 100%;
}

.hero-video--space {
  object-position: center;
}

.hero-video--service-wide,
.hero-video--service-close,
.hero-video--hands {
  object-position: center;
}

.hero-video.is-active {
  opacity: 1;
}

.hero-scrim {
  background: linear-gradient(90deg, rgba(42, 25, 27, 0.57), rgba(42, 25, 27, 0.1) 60%, rgba(42, 25, 27, 0.02)), linear-gradient(0deg, rgba(42, 25, 27, 0.58), rgba(42, 25, 27, 0.03) 65%);
  inset: 0;
  position: absolute;
  z-index: 1;
}

.hero-text {
  bottom: clamp(30px, 6vh, 64px);
  color: #fff;
  left: clamp(24px, 6vw, 76px);
  max-width: 740px;
  position: absolute;
  z-index: 2;
}

.hero-kicker {
  font-size: clamp(10px, 1.4vw, 13px);
  font-weight: 400;
  letter-spacing: 0.2em;
  margin-bottom: 12px;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.45);
}

.hero-en {
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--en);
  font-size: 15px;
  font-style: italic;
  letter-spacing: 0.24em;
  margin-bottom: 12px;
}

.hero h1 {
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(31px, 5.3vw, 56px);
  font-weight: 500;
  letter-spacing: 0.11em;
  line-height: 1.72;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.5);
}

.hero-copy {
  font-family: var(--serif);
  font-size: clamp(15px, 2vw, 19px);
  letter-spacing: 0.13em;
  margin-top: 10px;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.5);
}

.hero-description {
  color: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  line-height: 2.1;
  margin-top: 14px;
  max-width: 580px;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.45);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 15px;
}

.hero-badges span {
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  font-size: 10px;
  letter-spacing: 0.08em;
  padding: 4px 12px;
}

.hero-vertical {
  background: rgba(42, 25, 27, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--serif);
  font-size: 10px;
  letter-spacing: 0.18em;
  padding: 7px 14px 8px;
  position: absolute;
  right: clamp(20px, 4vw, 48px);
  text-shadow: 0 1px 9px rgba(0, 0, 0, 0.4);
  top: clamp(28px, 6vh, 58px);
  white-space: nowrap;
  writing-mode: horizontal-tb;
  z-index: 2;
}

.hero-progress {
  bottom: 22px;
  display: flex;
  gap: 7px;
  position: absolute;
  right: 24px;
  z-index: 3;
}

.hero-progress span {
  background: rgba(255, 255, 255, 0.4);
  height: 2px;
  transition: width 0.3s, background 0.3s;
  width: 18px;
}

.hero-progress span.is-active {
  background: #fff;
  width: 36px;
}

.hero-actions-wrap {
  padding: 28px 18px 4px;
}

.cta-pair {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr 1fr;
  margin: 28px auto 0;
  max-width: 680px;
}

.cta-pair > :only-child {
  grid-column: 1 / -1;
  justify-self: center;
  width: min(100%, 334px);
}

.hero-actions {
  margin-top: 0;
}

.action-btn {
  align-items: center;
  border-radius: 999px;
  color: #fff;
  display: flex;
  gap: 12px;
  justify-content: center;
  min-height: 58px;
  padding: 13px 20px;
  transition: filter 0.25s, transform 0.25s;
}

.action-btn:hover {
  filter: brightness(1.06);
  transform: translateY(-2px);
}

.action-btn img {
  height: 22px;
  object-fit: contain;
  width: auto;
}

.action-btn--line img {
  height: 26px;
}

.action-btn span {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.07em;
}

.action-btn.action-btn--hpb-sub {
  color: var(--hpb);
}

.hero-note {
  color: #776763;
  font-size: 11px;
  letter-spacing: 0.08em;
  margin-top: 11px;
  text-align: center;
}

.marquee {
  overflow: hidden;
  padding: 40px 0 8px;
}

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

.marquee span {
  -webkit-text-stroke: 1px #dfc9c9;
  color: transparent;
  font-family: var(--en);
  font-size: clamp(46px, 8vw, 88px);
  font-style: italic;
  letter-spacing: 0.11em;
  padding-right: 70px;
  white-space: nowrap;
}

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

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

.concern-grid {
  display: grid;
  gap: 0 56px;
  grid-template-columns: 1fr 1fr;
}

.concern {
  align-items: baseline;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 20px;
  padding: 23px 4px;
}

.concern:nth-last-child(-n + 2) {
  border-bottom: 1px solid var(--line);
}

.concern b {
  color: var(--accent-dark);
  font-family: var(--en);
  font-size: 16px;
  font-style: italic;
  font-weight: 400;
}

.concern p {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.9;
}

.concern-turn {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(16px, 2.4vw, 20px);
  letter-spacing: 0.1em;
  line-height: 2.25;
  margin-top: 50px;
  text-align: center;
}

.concern-turn strong {
  color: var(--accent-dark);
  font-weight: 500;
}

.solution,
.final-cta {
  color: #fff;
  overflow: hidden;
  padding: 150px 24px;
  position: relative;
  text-align: center;
}

.solution > img,
.final-cta > img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: center;
  position: absolute;
  width: 100%;
}

.solution-scrim,
.final-scrim {
  background: rgba(48, 30, 31, 0.66);
  inset: 0;
  position: absolute;
  z-index: 1;
}

.solution-inner,
.final-inner {
  margin: auto;
  max-width: 760px;
  position: relative;
  z-index: 2;
}

.solution-en,
.final-en {
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--en);
  font-size: 14px;
  font-style: italic;
  letter-spacing: 0.28em;
  margin-bottom: 22px;
}

.solution h2,
.final-cta h2 {
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(25px, 4.5vw, 39px);
  font-weight: 500;
  letter-spacing: 0.11em;
  line-height: 2;
  margin-bottom: 25px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.45);
}

.solution h2 {
  font-size: clamp(18px, 3vw, 30px);
  letter-spacing: 0.07em;
  white-space: nowrap;
}

.solution-inner > p:last-child,
.final-inner > p:not(.final-en) {
  color: rgba(255, 255, 255, 0.94);
  font-size: 14px;
  line-height: 2.5;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.45);
}

.sp-only {
  display: none;
}

.concept {
  text-align: center;
}

.concept-copy {
  font-size: 14.5px;
  line-height: 2.65;
  margin: auto;
  max-width: 680px;
}

.concept-copy p + p {
  margin-top: 22px;
}

.concept-key {
  color: var(--accent-dark);
  font-family: var(--serif);
  font-size: clamp(18px, 3vw, 24px);
  letter-spacing: 0.13em;
  line-height: 2.1;
  margin-top: 42px;
}

.concept-visual {
  aspect-ratio: 16 / 9;
  border-radius: 13px;
  margin: 58px auto 0;
  max-width: 930px;
  overflow: hidden;
  position: relative;
}

.concept-visual img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.concept-visual figcaption,
.style-media figcaption {
  bottom: 15px;
  color: #fff;
  font-family: var(--en);
  font-size: 12px;
  font-style: italic;
  left: 18px;
  letter-spacing: 0.25em;
  position: absolute;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6);
}

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

.style-row {
  align-items: center;
  display: grid;
  gap: clamp(34px, 7vw, 84px);
  grid-template-columns: 1fr 1fr;
  margin-bottom: 92px;
}

.style-row--reverse .style-media {
  order: 2;
}

.style-media {
  aspect-ratio: 4 / 3;
  border-radius: 13px;
  overflow: hidden;
  position: relative;
}

.style-media img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.style-row:first-of-type .style-media img {
  object-position: center 62%;
}

.style-copy .en-label {
  color: var(--accent-dark);
  font-family: var(--en);
  font-size: 14px;
  font-style: italic;
  letter-spacing: 0.27em;
  margin-bottom: 13px;
}

.style-copy h3 {
  font-family: var(--serif);
  font-size: clamp(21px, 3vw, 29px);
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.9;
  margin-bottom: 18px;
}

.style-copy > p:not(.en-label) {
  font-size: 14px;
  line-height: 2.45;
}

.style-copy > p + p {
  margin-top: 13px;
}

.style-copy .style-note {
  border-top: 1px solid var(--line);
  color: #7b6b67;
  font-size: 11px;
  margin-top: 20px;
  padding-top: 15px;
}

.nail-gallery {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr 1fr 0.72fr;
  margin-top: 8px;
}

.nail-gallery figure {
  border-radius: 12px;
  overflow: hidden;
}

.nail-gallery img {
  height: 360px;
  object-fit: cover;
  width: 100%;
}

.reasons {
  background: var(--base);
}

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

.reason {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 13px;
  padding: 30px 24px;
}

.reason-number {
  color: var(--accent-dark);
  font-family: var(--en);
  font-size: 23px;
  font-style: italic;
  margin-bottom: 13px;
}

.reason h3 {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.07em;
  line-height: 1.85;
  margin-bottom: 10px;
}

.reason > p:last-child {
  font-size: 12.5px;
  line-height: 2.2;
}

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

.flow-list {
  list-style: none;
  margin: auto;
  max-width: 820px;
}

.flow-item {
  align-items: start;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 30px;
  grid-template-columns: 74px 1fr;
  padding: 34px 0;
}

.flow-item:last-child {
  border-bottom: 1px solid var(--line);
}

.flow-number {
  color: var(--accent-light);
  font-family: var(--en);
  font-size: 32px;
  font-style: italic;
  line-height: 1.2;
}

.flow-number small {
  color: var(--accent-dark);
  display: block;
  font-family: var(--sans);
  font-size: 9px;
  font-style: normal;
  letter-spacing: 0.22em;
  margin-bottom: 3px;
}

.flow-item h3 {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.flow-item div > p {
  font-size: 13.5px;
  line-height: 2.25;
}

.flow-item div > span {
  border: 1px solid var(--accent-light);
  border-radius: 999px;
  color: var(--accent-dark);
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.1em;
  margin-top: 9px;
  padding: 2px 13px;
}

.menu {
  background: var(--greige);
}

.price-summary {
  display: grid;
  gap: 9px;
  margin: 0 auto 34px;
  max-width: 880px;
}

.price-summary-row {
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr auto;
  padding: 16px 22px;
}

.price-summary-row--recommended {
  background: linear-gradient(135deg, #fff, #fbf1f2);
  border: 2px solid var(--accent);
  box-shadow: 0 12px 30px rgba(141, 94, 102, 0.12);
}

.price-summary-row > div {
  align-items: center;
  display: flex;
  gap: 22px;
}

.price-summary-row > div > span {
  border: 1px solid var(--accent-light);
  border-radius: 999px;
  color: var(--accent-dark);
  font-size: 10px;
  letter-spacing: 0.1em;
  min-width: 126px;
  padding: 3px 11px;
  text-align: center;
}

.price-summary-row--recommended > div > span {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.price-summary-row h3 {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.06em;
}

.price-summary-row > p {
  align-items: baseline;
  display: flex;
  gap: 8px;
  white-space: nowrap;
}

.price-summary-row small {
  font-size: 9px;
}

.price-summary-row strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 500;
}

.menu-featured {
  background: #fff;
  border: 2px solid var(--accent);
  border-radius: 14px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 43% 57%;
  margin: auto;
  max-width: 880px;
  overflow: hidden;
}

.menu-photo {
  min-height: 560px;
  position: relative;
}

.menu-photo img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.menu-photo figcaption {
  background: rgba(59, 44, 43, 0.82);
  border-radius: 999px;
  color: #fff;
  font-size: 10px;
  left: 18px;
  letter-spacing: 0.12em;
  padding: 4px 13px;
  position: absolute;
  top: 18px;
}

.menu-featured-body {
  padding: 43px 41px;
}

.menu-tag {
  border: 1px solid var(--accent-light);
  border-radius: 999px;
  color: var(--accent-dark);
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.13em;
  margin-bottom: 14px;
  padding: 3px 13px;
}

.menu-featured-body h3 {
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.75;
}

.menu-catch {
  color: var(--accent-dark);
  font-size: 12px;
  letter-spacing: 0.08em;
  margin-top: 8px;
}

.menu-featured-body > p:not(.menu-catch, .menu-featured-price) {
  border-top: 1px solid var(--line);
  font-size: 13px;
  line-height: 2.2;
  margin-top: 22px;
  padding-top: 18px;
}

.menu-featured-price {
  align-items: baseline;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: flex-end;
  margin-top: 22px;
  padding-top: 18px;
}

.menu-featured-price small {
  font-size: 10px;
  margin-right: 10px;
}

.menu-featured-price strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 500;
}

.menu-featured-body .action-btn {
  margin-top: 22px;
  min-height: 54px;
}

.other-menu-heading {
  margin: 60px auto 23px;
  max-width: 800px;
  text-align: center;
}

.other-menu-heading p {
  color: var(--accent-dark);
  font-size: 11px;
  letter-spacing: 0.15em;
}

.other-menu-heading h3 {
  font-family: var(--serif);
  font-size: clamp(20px, 3vw, 27px);
  font-weight: 500;
  letter-spacing: 0.09em;
  margin-top: 5px;
}

.menu-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 1fr;
  margin: auto;
  max-width: 880px;
}

.menu-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}

.menu-card figure {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

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

.menu-card > div {
  padding: 26px 27px 28px;
}

.menu-card > div > span {
  color: var(--accent-dark);
  font-size: 10px;
  letter-spacing: 0.15em;
}

.menu-card h3 {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 500;
  letter-spacing: 0.08em;
  margin-top: 5px;
}

.menu-card p {
  align-items: baseline;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  margin-top: 17px;
  padding-top: 14px;
}

.menu-card small {
  font-size: 10px;
}

.menu-card strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
}

.menu-note {
  color: #776763;
  font-size: 11px;
  line-height: 2;
  margin: 22px auto 0;
  max-width: 800px;
  text-align: center;
}

.hpb-gallery {
  background: var(--greige);
}

.gallery-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gallery-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(81, 55, 55, 0.06);
  grid-column: auto;
  overflow: hidden;
}

.gallery-card--wide {
  grid-column: auto;
}

.gallery-card img {
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.gallery-card--wide img {
  aspect-ratio: 1 / 1;
}

.gallery-card figcaption {
  align-items: center;
  color: var(--ink);
  display: flex;
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: 0.05em;
  line-height: 1.7;
  min-height: 64px;
  padding: 14px 17px;
}

.gallery-actions {
  margin-top: 38px;
}

.gallery-actions--single {
  margin-left: auto;
  margin-right: auto;
  max-width: 420px;
}

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

.artist-profile {
  align-items: start;
  display: grid;
  gap: 18px clamp(40px, 7vw, 86px);
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
}

.artist-photo {
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow);
  grid-column: 1;
  grid-row: 1 / 3;
  overflow: hidden;
  position: relative;
}

.artist-photo > a {
  display: block;
}

.artist-photo img {
  aspect-ratio: 1 / 1;
  display: block;
  height: auto;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.artist-photo figcaption {
  background: rgba(59, 44, 43, 0.82);
  bottom: 16px;
  color: #fff;
  font-family: var(--en);
  font-size: 13px;
  font-style: italic;
  left: 16px;
  letter-spacing: 0.14em;
  padding: 7px 15px;
  position: absolute;
}

.artist-intro {
  align-self: end;
  grid-column: 2;
  grid-row: 1;
}

.artist-intro h3 {
  font-family: var(--serif);
  font-size: clamp(23px, 3.4vw, 32px);
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.85;
  margin: 8px 0 18px;
  text-wrap: balance;
  word-break: auto-phrase;
}

.artist-heading-row {
  display: block;
}

.instagram-link {
  align-items: center;
  color: var(--accent-dark);
  display: inline-flex;
  font-family: var(--en);
  font-size: 13px;
  gap: 8px;
  letter-spacing: 0.08em;
  padding: 5px 0;
}

.instagram-link svg {
  flex: 0 0 auto;
}

.artist-body {
  grid-column: 2;
  grid-row: 2;
}

.artist-body > p:not(.artist-specialty) {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 14px;
  line-height: 2.55;
}

.artist-body > p + p {
  margin-top: 18px;
}

.artist-specialty {
  border-left: 2px solid var(--accent-light);
  color: var(--accent-dark);
  font-size: 12px;
  line-height: 2;
  margin-top: 26px;
  padding-left: 16px;
}

.artist-body .action-btn {
  margin-top: 30px;
  max-width: 390px;
}

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

.review-score {
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  margin: 0 auto 34px;
  max-width: 430px;
  padding: 28px 30px 25px;
  text-align: center;
  transition: transform 0.25s;
}

.review-score:hover {
  transform: translateY(-3px);
}

.review-score > span:first-child {
  color: var(--hpb);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
}

.review-score strong {
  color: var(--ink);
  font-family: var(--en);
  font-size: 70px;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.05;
  margin-top: 5px;
}

.review-stars {
  color: #c59a64;
  font-size: 17px;
  letter-spacing: 0.12em;
  line-height: 1;
}

.review-score small {
  color: #776763;
  font-size: 9.5px;
  letter-spacing: 0.07em;
  margin-top: 13px;
}

.review-rail-toolbar {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 0 0 14px;
}

.review-rail-toolbar > p {
  color: var(--accent-dark);
  font-family: var(--en);
  font-size: 12px;
  letter-spacing: 0.14em;
}

.review-rail-buttons {
  display: flex;
  gap: 8px;
}

.review-nav {
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  font-size: 18px;
  height: 44px;
  justify-content: center;
  transition: background-color 0.2s, border-color 0.2s, color 0.2s;
  width: 44px;
}

.review-nav:hover:not(:disabled) {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.review-nav:disabled {
  cursor: default;
  opacity: 0.32;
}

.review-rail {
  display: grid;
  gap: 16px;
  grid-auto-columns: minmax(310px, calc((100% - 32px) / 3));
  grid-auto-flow: column;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 4px 2px 18px;
  scroll-behavior: smooth;
  scroll-snap-type: inline mandatory;
  scrollbar-color: var(--accent-light) transparent;
  scrollbar-width: thin;
}

.review-rail:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 5px;
}

.review-rail::-webkit-scrollbar {
  height: 5px;
}

.review-rail::-webkit-scrollbar-thumb {
  background: var(--accent-light);
  border-radius: 999px;
}

.review-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  display: grid;
  grid-template-rows: auto minmax(150px, 1fr) auto auto;
  min-height: 440px;
  padding: 25px 25px 22px;
  scroll-snap-align: start;
  transition: border-color 0.25s, transform 0.25s;
}

.review-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
}

.review-card--critical {
  border-color: #c9b9b2;
}

.review-card__head {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 22px;
}

.review-card__head > span:first-child {
  color: var(--accent-dark);
  font-family: var(--en);
  font-size: 10px;
  letter-spacing: 0.14em;
}

.review-card__stars {
  color: #c59a64;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.review-card__stars--critical {
  color: #9b8178;
}

.review-card__summary {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 14px;
  letter-spacing: 0.04em;
  line-height: 2.05;
}

.review-card__summary::before {
  color: var(--accent-light);
  content: "“";
  display: block;
  font-family: var(--en);
  font-size: 38px;
  line-height: 0.6;
  margin-bottom: 14px;
}

.review-card__meta {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 8px;
  margin-top: 22px;
  padding-top: 17px;
}

.review-card__meta > div {
  display: grid;
  gap: 10px;
  grid-template-columns: 55px 1fr;
}

.review-card__meta dt {
  color: #8e7f79;
  font-size: 9px;
  letter-spacing: 0.08em;
}

.review-card__meta dd {
  color: var(--ink);
  font-size: 10px;
  line-height: 1.65;
}

.review-card__link {
  border-top: 1px solid var(--line);
  color: var(--hpb);
  font-size: 9.5px;
  letter-spacing: 0.06em;
  margin-top: 18px;
  padding-top: 14px;
}

.review-note {
  color: #776763;
  font-size: 10px;
  line-height: 2;
  margin-top: 21px;
  text-align: center;
}

.review-action {
  margin: 28px auto 0;
  max-width: 390px;
}

.story-grid {
  align-items: start;
  display: grid;
  gap: clamp(36px, 7vw, 84px);
  grid-template-columns: 5fr 6fr;
}

.story-photo {
  border-radius: 13px;
  overflow: hidden;
  position: sticky;
  top: 95px;
}

.story-photo img {
  max-height: 640px;
  object-fit: cover;
  width: 100%;
}

.story-copy {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 2.7;
}

.story-copy p + p {
  margin-top: 24px;
}

.story-close {
  color: var(--accent-dark);
  font-size: 16px;
  letter-spacing: 0.1em;
  margin-top: 34px !important;
}

.profile-card {
  align-items: stretch;
  background: var(--base);
  border: 1px solid var(--line);
  border-radius: 14px;
  display: grid;
  grid-template-columns: 46% 54%;
  margin: 80px auto 0;
  max-width: 880px;
  overflow: hidden;
}

.profile-card > img {
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  width: 100%;
}

.profile-card > div {
  align-self: center;
  padding: 46px 44px;
}

.profile-role {
  color: var(--accent-dark);
  font-size: 11px;
  letter-spacing: 0.17em;
}

.profile-card h3 {
  font-family: var(--serif);
  font-size: 29px;
  font-weight: 500;
  letter-spacing: 0.14em;
  margin: 5px 0 20px;
}

.profile-card > div > p:last-child {
  font-size: 14px;
  line-height: 2.4;
}

.foryou {
  background: var(--base);
}

.foryou-list {
  list-style: none;
  margin: auto;
  max-width: 680px;
}

.foryou-list li {
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 14.5px;
  line-height: 2;
  padding: 20px 5px 20px 44px;
  position: relative;
}

.foryou-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.foryou-list li::before {
  border-bottom: 1.5px solid var(--accent);
  border-left: 1.5px solid var(--accent);
  content: "";
  height: 7px;
  left: 9px;
  position: absolute;
  top: 31px;
  transform: rotate(-45deg);
  width: 12px;
}

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

.faq-list {
  margin: auto;
  max-width: 740px;
}

.faq-item {
  border-top: 1px solid var(--line);
  padding: 26px 4px;
}

.faq-item:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-question,
.faq-answer {
  align-items: flex-start;
  display: flex;
  gap: 16px;
}

.faq-question {
  margin-bottom: 13px;
}

.faq-question span,
.faq-answer span {
  align-items: center;
  border-radius: 50%;
  color: #fff;
  display: flex;
  flex: 0 0 34px;
  font-family: var(--en);
  font-size: 15px;
  font-style: italic;
  height: 34px;
  justify-content: center;
}

.faq-question span {
  background: var(--ink);
}

.faq-answer span {
  background: var(--accent);
}

.faq-question h3 {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.9;
  padding-top: 2px;
}

.faq-answer p {
  font-size: 13.5px;
  line-height: 2.25;
  padding-top: 3px;
}

.information {
  background: #fff;
}

.information-card {
  background: var(--base);
  border: 1px solid var(--line);
  border-radius: 14px;
  margin: auto;
  max-width: 900px;
  overflow: hidden;
  padding: 48px 50px 0;
}

.information-logo {
  border-bottom: 1px solid var(--line);
  margin-bottom: 7px;
  padding-bottom: 28px;
  text-align: center;
}

.information-name {
  color: var(--ink);
  font-family: var(--en);
  font-size: 48px;
  font-style: italic;
  letter-spacing: 0.2em;
  line-height: 1;
}

.information-logo > p:last-child {
  color: var(--accent-dark);
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: 0.13em;
  margin-top: 12px;
}

.salon-data > div {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 28px;
  grid-template-columns: 135px 1fr;
  padding: 20px 3px;
}

.salon-data dt {
  color: var(--accent-dark);
  font-family: var(--en);
  font-size: 12px;
  font-style: italic;
  letter-spacing: 0.18em;
}

.salon-data dd {
  color: var(--ink);
  font-size: 13px;
  line-height: 2;
}

.salon-data dd small {
  color: var(--text);
  font-size: 10px;
}

.salon-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 22px;
}

.salon-links a {
  border-bottom: 1px solid var(--accent-light);
}

.information-map {
  margin: 34px -50px 0;
}

.information-map iframe {
  border: 0;
  display: block;
  filter: saturate(0.7) sepia(0.05);
  height: 380px;
  width: 100%;
}

.information-map > a {
  background: var(--ink);
  color: #fff;
  display: block;
  font-size: 11px;
  letter-spacing: 0.1em;
  padding: 10px;
  text-align: center;
}

.info-actions {
  margin-top: 28px;
}

.final-cta {
  padding-bottom: 140px;
  padding-top: 140px;
}

.final-cta .cta-pair {
  margin-top: 30px;
}

.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 24px 100px;
  text-align: center;
}

.footer-logo {
  color: #fff;
  display: inline-block;
  font-family: var(--en);
  font-size: 42px;
  font-style: italic;
  letter-spacing: 0.22em;
  line-height: 1;
  margin-bottom: 16px;
}

.site-footer p {
  font-size: 10.5px;
  letter-spacing: 0.12em;
}

.site-footer small {
  display: block;
  font-family: var(--en);
  font-size: 11px;
  letter-spacing: 0.12em;
  margin-top: 20px;
}

.sticky-cta {
  bottom: 0;
  display: none;
  gap: 7px;
  left: 0;
  padding: 8px;
  position: fixed;
  right: 0;
  z-index: 90;
}

.sticky-cta .action-btn {
  box-shadow: 0 8px 24px rgba(54, 32, 34, 0.2);
  min-height: 52px;
}

@media (max-width: 1040px) {
  .global-nav {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

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

@media (max-width: 760px) {
  body {
    padding-bottom: 68px;
  }

  .section {
    padding: 88px 20px;
  }

  .section-heading {
    margin-bottom: 40px;
  }

  .section-number {
    font-size: 12px;
    letter-spacing: 0.19em;
  }

  .section-heading h2 {
    font-size: clamp(24px, 7.5vw, 31px);
    line-height: 1.8;
  }

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

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

  .logo span {
    font-size: 26px;
  }

  .logo small {
    font-size: 6.5px;
  }

  .mini-cta {
    height: 36px;
    padding: 0 11px;
  }

  .mini-cta img {
    height: 14px;
  }

  .mini-cta--line img {
    height: 17px;
  }

  .mini-cta span {
    display: none;
  }

  .hero {
    padding: 72px 8px 0;
  }

  .hero-media {
    border-radius: 13px;
    height: calc(100svh - 86px);
    min-height: 700px;
  }

  .hero-video {
    object-position: 58% center;
  }

  .hero-video--service-wide {
    object-position: center;
  }

  .hero-video--service-close {
    object-position: center;
  }

  .hero-video--hands {
    object-position: 56% center;
  }

  .hero-video--space {
    object-position: center;
  }

  .hero-scrim {
    background: linear-gradient(0deg, rgba(42, 25, 27, 0.7), rgba(42, 25, 27, 0.04) 70%), linear-gradient(90deg, rgba(42, 25, 27, 0.34), transparent 75%);
  }

  .hero-text {
    bottom: 76px;
    left: 20px;
    max-width: calc(100% - 40px);
  }

  .hero-kicker {
    font-size: 9.5px;
    letter-spacing: 0.12em;
  }

  .hero-en {
    font-size: 12px;
    letter-spacing: 0.17em;
  }

  .hero h1 {
    font-size: clamp(29px, 9vw, 38px);
    letter-spacing: 0.04em;
    line-height: 1.65;
  }

  .hero-copy {
    font-size: 14px;
    margin-top: 8px;
  }

  .hero-description {
    font-size: 10.5px;
    line-height: 1.9;
    margin-top: 10px;
  }

  .hero-badges {
    gap: 5px;
    margin-top: 10px;
  }

  .hero-badges span {
    font-size: 8.5px;
    padding: 3px 8px;
  }

  .hero-vertical {
    font-size: 8px;
    letter-spacing: 0.12em;
    padding: 6px 10px 7px;
    right: 15px;
    top: 22px;
  }

  .hero-progress {
    display: none;
  }

  .hero-actions-wrap {
    padding: 20px 10px 2px;
  }

  .cta-pair {
    gap: 8px;
  }

  .action-btn {
    gap: 8px;
    min-height: 54px;
    padding: 10px 12px;
  }

  .action-btn img {
    height: 17px;
  }

  .action-btn--line img {
    height: 21px;
  }

  .action-btn span {
    font-size: 10.5px;
    letter-spacing: 0.04em;
  }

  .marquee {
    padding-top: 30px;
  }

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

  .concern:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .concern:last-child {
    border-bottom: 1px solid var(--line);
  }

  .concern-turn {
    font-size: 15px;
    margin-top: 38px;
  }

  .solution,
  .final-cta {
    padding: 105px 20px;
  }

  .solution > img {
    object-position: 58% center;
  }

  .solution h2,
  .final-cta h2 {
    font-size: 25px;
    line-height: 1.9;
  }

  .solution h2 {
    font-size: clamp(15px, 4.4vw, 18px);
    letter-spacing: 0.04em;
    line-height: 1.7;
  }

  .solution-inner > p:last-child,
  .final-inner > p:not(.final-en) {
    font-size: 12px;
    line-height: 2.3;
  }

  .sp-only {
    display: block;
  }

  .concept-copy {
    font-size: 13px;
    line-height: 2.5;
  }

  .concept-visual {
    aspect-ratio: 4 / 3;
    margin-top: 44px;
  }

  .style-row,
  .style-row--reverse {
    gap: 28px;
    grid-template-columns: 1fr;
    margin-bottom: 68px;
  }

  .style-row--reverse .style-media {
    order: 0;
  }

  .style-media {
    aspect-ratio: 4 / 3;
  }

  .nail-gallery {
    gap: 7px;
  }

  .nail-gallery img {
    height: 210px;
  }

  .gallery-grid {
    gap: 8px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-card {
    border-radius: 9px;
    grid-column: auto;
  }

  .gallery-card--wide {
    grid-column: auto;
  }

  .gallery-card img,
  .gallery-card--wide img {
    aspect-ratio: 1 / 1;
  }

  .gallery-card figcaption {
    align-items: flex-start;
    flex-direction: column;
    font-size: 10.5px;
    gap: 2px;
    min-height: 71px;
    padding: 10px 11px;
  }

  .gallery-actions {
    margin-top: 26px;
  }

  .artist-profile {
    align-items: center;
    gap: 28px 16px;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .artist-photo {
    grid-column: 1;
    grid-row: 1;
    margin: 0;
    max-width: none;
  }

  .artist-photo img {
    aspect-ratio: 1 / 1;
    object-position: center;
  }

  .artist-photo figcaption {
    bottom: 8px;
    font-size: 9px;
    left: 8px;
    letter-spacing: 0.08em;
    padding: 5px 8px;
  }

  .artist-intro {
    align-self: center;
    grid-column: 2;
    grid-row: 1;
  }

  .artist-intro h3 {
    font-size: clamp(13px, 4vw, 17px);
    letter-spacing: 0.045em;
    line-height: 1.7;
    margin: 7px 0 12px;
  }

  .artist-heading-row > span {
    display: block;
    white-space: nowrap;
  }

  .artist-intro .profile-role {
    font-size: 9px;
    letter-spacing: 0.09em;
    line-height: 1.7;
  }

  .artist-intro .profile-role > span {
    display: block;
  }

  .artist-intro .profile-role > .profile-role-separator {
    display: none;
  }

  .instagram-link {
    font-size: 11px;
    gap: 6px;
  }

  .instagram-link svg {
    height: 17px;
    width: 17px;
  }

  .artist-body {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .artist-body > p:not(.artist-specialty) {
    font-size: 13px;
    line-height: 2.35;
  }

  .artist-body .action-btn {
    max-width: none;
  }

  .review-score {
    padding: 24px 20px 22px;
  }

  .review-score strong {
    font-size: 58px;
  }

  .review-rail-toolbar {
    margin-bottom: 11px;
  }

  .review-nav {
    height: 40px;
    width: 40px;
  }

  .review-rail {
    gap: 11px;
    grid-auto-columns: min(86vw, 350px);
    margin-right: calc(var(--side) * -1);
    padding-right: var(--side);
  }

  .review-card {
    grid-template-rows: auto minmax(155px, 1fr) auto auto;
    min-height: 430px;
    padding: 24px 22px 21px;
  }

  .review-card__summary {
    font-size: 13px;
    line-height: 2.05;
  }

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

  .reason {
    padding: 25px 23px;
  }

  .flow-item {
    gap: 18px;
    grid-template-columns: 58px 1fr;
    padding: 28px 0;
  }

  .flow-number {
    font-size: 27px;
  }

  .flow-item h3 {
    font-size: 16px;
  }

  .flow-item div > p {
    font-size: 12.5px;
  }

  .price-summary-row {
    gap: 10px;
    padding: 15px 14px;
  }

  .price-summary-row > div {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .price-summary-row > div > span {
    font-size: 8px;
    min-width: 0;
    padding: 2px 9px;
  }

  .price-summary-row h3 {
    font-size: 14px;
  }

  .price-summary-row strong {
    font-size: 22px;
  }

  .menu-featured {
    grid-template-columns: 1fr;
  }

  .menu-photo {
    aspect-ratio: 4 / 3;
    min-height: 0;
  }

  .menu-featured-body {
    padding: 30px 24px 32px;
  }

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

  .story-grid {
    gap: 35px;
    grid-template-columns: 1fr;
  }

  .story-photo {
    position: static;
  }

  .story-photo img {
    aspect-ratio: 4 / 3;
    max-height: none;
  }

  .profile-card {
    grid-template-columns: 1fr;
    margin-top: 58px;
  }

  .profile-card > img {
    aspect-ratio: 4 / 3;
    min-height: 0;
  }

  .profile-card > div {
    padding: 30px 25px 34px;
  }

  .faq-question,
  .faq-answer {
    gap: 12px;
  }

  .information-card {
    padding: 35px 20px 0;
  }

  .salon-data > div {
    gap: 6px;
    grid-template-columns: 1fr;
    padding: 18px 2px;
  }

  .information-map {
    margin: 28px -20px 0;
  }

  .information-map iframe {
    height: 320px;
  }

  .info-actions {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer {
    padding-bottom: 50px;
  }

  .sticky-cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .sticky-cta .action-btn {
    gap: 5px;
    padding-left: 9px;
    padding-right: 9px;
  }

  .sticky-cta .action-btn img {
    height: 14px;
    max-width: 78px;
  }

  .sticky-cta .action-btn span {
    font-size: 9.5px;
  }
}

@media (max-width: 410px) {
  .hero-description {
    max-width: 315px;
  }

  .hero-badges span:last-child {
    display: none;
  }

  .hero-actions-wrap .action-btn span,
  .final-cta .action-btn span,
  .info-actions .action-btn span {
    font-size: 9.5px;
  }

  .section-heading--center .section-number::before,
  .section-heading--center .section-number::after {
    width: 24px;
  }

  .nail-gallery img {
    height: 180px;
  }
}

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

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

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