body {
    background-color: #fbfaf8;
    color: #2d2d2d;
    overflow-x: hidden;
    font-family: 'Inter', "Noto Serif JP", sans-serif;
}

/* Benchmark Styles */
.floating-char {
    position: absolute;
    font-family: 'Cormorant Garamond', serif;
    font-size: 40vw;
    line-height: 1;
    color: rgba(0, 0, 0, 0.03);
    z-index: -1;
    pointer-events: none;
    user-select: none;
}

.img-parallax {
    overflow: hidden;
    position: relative;
}

.img-parallax img {
    height: 120%;
    width: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.reveal-up {
    opacity: 0;
    transform: translateY(60px);
}

.nav-link {
    position: relative;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 1px;
    background: #bda68a;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

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

/* Custom Shapes for Benchmark Vibe */
.circle-stamp {
    width: 120px;
    height: 120px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 10px;
    letter-spacing: 0.1em;
    position: relative;
}

.vertical-line {
    width: 1px;
    height: 100px;
    background: rgba(0, 0, 0, 0.1);
}

/* Grainy Overlay */
.grain-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://grainy-gradients.vercel.app/noise.svg');
    opacity: 0.03;
    pointer-events: none;
    z-index: 100;
}

.asymmetric-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
}

/* Section Spacing */
section {
    padding: 10vw 0;
}

/* Circle Image Frame for Stylist */
.stylist-circle {
    width: 15vw;
    height: 15vw;
    min-width: 150px;
    min-height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
}

/* Mobile Menu Transitions */
.ease-expo {
    transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.nav-link-mobile {
    position: relative;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

#mobile-menu {
    background-color: rgba(251, 250, 248, 0.85) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

#mobile-menu.active {
    transform: translateX(0);
}

#mobile-menu.active .nav-link-mobile {
    opacity: 1;
    transform: translateY(0);
}

#mobile-menu.active .nav-link-mobile:nth-child(1) {
    transition-delay: 0.1s;
}

#mobile-menu.active .nav-link-mobile:nth-child(2) {
    transition-delay: 0.2s;
}

#mobile-menu.active .nav-link-mobile:nth-child(3) {
    transition-delay: 0.3s;
}

#mobile-menu.active .nav-link-mobile:nth-child(4) {
    transition-delay: 0.4s;
}

#mobile-menu.active .nav-link-mobile:nth-child(5) {
    transition-delay: 0.5s;
}