:root {
    --base-font-size: 14px;
    --heading-font-size: 24px;
    --section-title-size: 52px;
    --accent-color: rgb(194 8 126);
    --karasumi-color: #333333;
    --text-color: #333;
}

body {
    font-family: 'Zen Old Mincho', serif;
    font-size: var(--base-font-size);
    color: var(--text-color);
    background-color: #dcdcdc;
    /* 指定のグレーに変更 */
    line-height: 1.8;
    letter-spacing: 0.05em;
}

/* Loading Screen Animation */
@keyframes loadingSlide {
    0% { transform: translateX(-100%); }
    50% { transform: translateX(0); }
    100% { transform: translateX(100%); }
}
.loading-bar-inner {
    animation: loadingSlide 1.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}


h1,
h2,
h3,
.font-serif {
    font-family: 'Zen Old Mincho', serif;
    font-weight: 400;
}

.font-roboto {
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    font-size: var(--section-title-size);
    line-height: 1.1;
}

/* 英語フォントを適用したいクラスを追加 */
.nav-link,
.fv__nav-left a,
.insta-btn-square-black,
.insta-btn-square-white,
.reserve-btn-phone,
.scroll-down {
    font-family: 'Oswald', sans-serif;
}

.heading-text {
    font-size: var(--heading-font-size);
}

.section-padding {
    padding: 100px 0;
}

.container-custom {
    max-width: 1152px;
    /* 6xl */
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    /* px-6 */
    padding-right: 1.5rem;
}

@media (min-width: 768px) {
    .container-custom {
        padding-left: 3rem;
        /* px-12 */
        padding-right: 3rem;
    }
}

.img-container {
    overflow: hidden;
    background-color: #cccccc;
    position: relative;
}

.img-container img {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Nav Animation */
#mobile-menu {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link {
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -4px;
    left: 0;
    background-color: currentColor;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Gallery Slider */
.slider-wrapper {
    display: flex;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.slider-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
    position: relative;
}

.thumb-active {
    outline: 1px solid var(--accent-color);
    outline-offset: 4px;
}

/* Instagram Square Buttons */
.insta-btn-square-black,
.insta-btn-square-white {
    display: inline-block;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    text-decoration: none;
}

.insta-btn-square-black {
    background-color: #000;
    color: #fff;
    border: 1px solid #000;
}

.insta-btn-square-black:hover {
    background-color: transparent;
    color: #000;
}

.insta-btn-square-white {
    background-color: #fff;
    color: #000;
    border: 1px solid #fff;
}

.insta-btn-square-white:hover {
    background-color: transparent;
    color: #fff;
}

/* Line Button Custom Style */
.line-btn-wrapper {
    margin: 40px 0 24px;
    max-width: 260px;
    text-align: left;
}

.line-btn-wrapper.\!mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
}

.line-btn {
    display: inline-block;
    position: relative;
    width: 100%;
    padding-bottom: 12px;
    text-decoration: none;
    color: var(--text-color);
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: opacity 0.3s;
}

.line-btn::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: calc(100% - 20px);
    height: 1px;
    background-color: var(--text-color);
    transition: width 0.3s;
}

.line-btn .arrow-icon {
    position: absolute;
    right: 0;
    bottom: -9px;
    width: 19px;
    height: 19px;
    border: 1px solid var(--text-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.line-btn .arrow-icon::before {
    content: '';
    width: 5px;
    height: 5px;
    border-top: 1px solid var(--text-color);
    border-right: 1px solid var(--text-color);
    transform: rotate(45deg);
    margin-left: -2px;
}

.line-btn:hover {
    opacity: 0.7;
}

.line-btn:hover .arrow-icon {
    transform: translateX(5px);
}

/* Purple Monochrome Filter for Gallery */
.purple-mono img {
    filter: none;
    transition: filter 0.3s ease;
}

.purple-mono .thumb-active img {
    filter: grayscale(100%) sepia(100%) hue-rotate(225deg) saturate(0.5) brightness(0.9) contrast(1.1);
}

/* New FV Styles */
.fv {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    background-color: #faf9f8;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.fv__image-box {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    z-index: 1;
}

.fv__image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fv__content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1152px;
    margin: 0 auto;
    padding: 0 1.5rem;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    /* 左揃えを徹底 */
}

.fv__small-text {
    font-family: 'Oswald', sans-serif;
    font-size: 13px;
    color: #555;
    line-height: 2;
    letter-spacing: 0.05em;
    margin-bottom: 40px;
    text-align: left;
}

.fv__title {
    font-family: 'Cormorant Garamond', serif;
    color: #111;
    font-size: clamp(50px, 8vw, 120px);
    line-height: 1.1;
    letter-spacing: 0.1em;
    font-weight: 400;
    text-align: left;
}

.read-more-line-wrap {
    position: relative;
    width: 1px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.read-more-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    animation: lineDownScroll 2.2s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

@keyframes lineDownScroll {
    0% {
        transform: translateY(-100%);
    }
    50% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(100%);
    }
}

@media (max-width: 767px) {
    .fv {
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 0;
        height: 100svh;
        min-height: 600px;
        position: relative;
        display: block;
    }

    .fv__image-box {
        position: absolute;
        top: 120px;
        right: 0;
        width: 80%;
        height: 55vh;
        opacity: 1;
    }

    .fv__content {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 120px 5% 60px;
        align-items: center;
        text-align: center;
        z-index: 10;
    }

    .fv__small-text {
        margin-left: 0;
        text-align: left;
        width: 100%;
        font-size: 11px;
        line-height: 1.8;
        margin-bottom: 0;
    }

    .fv__title {
        text-align: center;
        font-size: 17vw;
        line-height: 1;
        width: 100%;
    }

    .scroll-down {
        display: none;
    }
}

/* Top Button */
#top-button {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 20px;
    z-index: 50;
}

@media (max-width: 767px) {
    #top-button {
        bottom: 30px;
    }
}

/* Custom Reserve Button Styles */
.reserve-btn-phone {
    border: 1px solid #333;
    color: #333;
    transition: all 0.3s ease;
}

.reserve-btn-phone:hover {
    background-color: #333;
    color: #fff;
}

/* Scroll Animations (Default Snap) */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

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

/* Steam Reveal (湯気のようにぼやけてふわっと浮き出るアニメーション) */
.steam-reveal {
    opacity: 0;
    filter: blur(12px);
    transform: translateY(25px) scale(0.98);
    transition: opacity 1.6s cubic-bezier(0.22, 1, 0.36, 1),
                filter 1.6s cubic-bezier(0.22, 1, 0.36, 1),
                transform 1.6s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
    will-change: opacity, filter, transform;
}

.steam-reveal.active {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.reveal-delay-1, .steam-delay-1 {
    transition-delay: 0.15s;
}

.reveal-delay-2, .steam-delay-2 {
    transition-delay: 0.4s;
}

.reveal-delay-3, .steam-delay-3 {
    transition-delay: 0.65s;
}

.steam-delay-4 {
    transition-delay: 0.9s;
}

/* FV Specific Slow Animations */
.fv .reveal {
    transition: all 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.fv .reveal-delay-2 {
    transition-delay: 0.8s;
}

.fv .reveal-delay-3 {
    transition-delay: 1.6s;
}

/* Luxe cool minimal direction */
:root {
    --accent-color: #111;
    --text-color: #151515;
    --paper: #f7f7f4;
    --soft-gray: #e7e5e1;
}

body {
    background: var(--paper);
    color: var(--text-color);
    letter-spacing: 0.03em;
}

.container-custom {
    max-width: 1280px;
}

#header-nav {
    mix-blend-mode: normal;
}

#header-nav.bg-transparent a,
#header-nav.bg-transparent .nav-link {
    color: #fff !important;
}

#header-nav.bg-transparent #menu-btn span {
    background-color: #fff;
}

#header-nav:not(.bg-transparent) {
    background: rgba(247, 247, 244, 0.92) !important;
}

#header-nav a {
    font-family: 'Oswald', sans-serif;
}

.site-logo {
    display: inline-flex;
    align-items: center;
}

.site-logo img {
    display: block;
    width: auto;
    height: 56px;
    max-height: calc(100% - 14px);
    max-width: 180px;
    object-fit: contain;
}

@media (min-width: 768px) {
    .site-logo img {
        height: 72px;
        max-height: calc(100% - 18px);
    }
}

.reserve-btn-phone,
.line-btn,
.insta-btn-square-black {
    border-radius: 0;
}

.fv {
    min-height: 760px;
    background-image: url('img/fv.jpg') !important;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    align-items: flex-end;
}

.fv::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.34) 42%, rgba(0, 0, 0, 0.08) 100%),
        linear-gradient(0deg, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0) 45%);
    pointer-events: none;
}

.fv__image-box {
    display: none;
}

.fv__content {
    max-width: 1280px;
    padding: 0 3rem 9rem;
    justify-content: flex-end;
}

.fv__small-text {
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    letter-spacing: 0.12em;
    line-height: 2.2;
    margin-bottom: 28px;
    text-transform: uppercase;
}

.fv__title {
    color: #fff;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(76px, 13vw, 210px);
    line-height: 0.78;
    letter-spacing: 0;
}

.fv__title span:last-child {
    color: rgba(255, 255, 255, 0.78);
    font-family: 'Oswald', sans-serif;
    font-size: clamp(14px, 2vw, 28px) !important;
    letter-spacing: 0.32em !important;
    margin-top: 2.4rem !important;
}

.scroll-down {
    color: #fff;
    right: 2.5rem;
}

.scroll-down::after {
    background: #fff;
}

.fv .line-btn {
    color: #fff;
}

.fv .line-btn::after,
.fv .line-btn .arrow-icon,
.fv .line-btn .arrow-icon::before {
    border-color: #fff;
}

.fv .line-btn::after {
    background: #fff;
}

.concept-section {
    background: #fff;
    border-bottom: 1px solid var(--soft-gray);
}

.concept-section .font-serif:first-child {
    max-width: 420px;
}

.about-editorial {
    background: var(--paper);
    max-width: none;
    padding-left: max(1.5rem, calc((100vw - 1280px) / 2 + 3rem));
    padding-right: max(1.5rem, calc((100vw - 1280px) / 2 + 3rem));
}

.about-editorial .img-container {
    border-radius: 999px 999px 16px 16px;
    background: #d8d8d8;
}

.about-slider img {
    opacity: 0;
    transform: translateX(28px) scale(1.04);
    clip-path: inset(0 0 0 100%);
    animation: aboutSmartSlide 12s infinite cubic-bezier(0.16, 1, 0.3, 1);
}

.about-slider img:nth-child(2) {
    animation-delay: 4s;
}

.about-slider img:nth-child(3) {
    animation-delay: 8s;
}

@keyframes aboutSmartSlide {
    0% {
        opacity: 0;
        transform: translateX(28px) scale(1.04);
        clip-path: inset(0 0 0 100%);
    }
    8%,
    30% {
        opacity: 1;
        transform: translateX(0) scale(1);
        clip-path: inset(0 0 0 0);
    }
    38%,
    100% {
        opacity: 0;
        transform: translateX(-22px) scale(1.02);
        clip-path: inset(0 100% 0 0);
    }
}

.about-editorial h2,
#service h2,
.menu-editorial h2,
.reviews-editorial h2,
.message-editorial h2,
#access h2 {
    font-size: clamp(42px, 8vw, 104px) !important;
    letter-spacing: 0 !important;
    text-transform: none;
}

.about-editorial h3 {
    font-size: clamp(22px, 3vw, 38px);
    line-height: 1.75;
}

.gallery-editorial {
    background: #fff;
    max-width: none;
    padding-left: max(1.5rem, calc((100vw - 1280px) / 2 + 3rem));
    padding-right: max(1.5rem, calc((100vw - 1280px) / 2 + 3rem));
}

.gallery-editorial .grid.grid-cols-3 {
    gap: 0;
    border: 1px solid var(--soft-gray);
}

.gallery-editorial .grid.grid-cols-3 .img-container {
    border-right: 1px solid var(--soft-gray);
    border-bottom: 1px solid var(--soft-gray);
    filter: grayscale(28%);
}

.gallery-editorial .flex-1.img-container {
    box-shadow: none;
}

.gallery-editorial button {
    border-radius: 0 !important;
    background: #111 !important;
}

.thumb-active {
    outline: 0;
}

.purple-mono .thumb-active img {
    filter: grayscale(0%) contrast(1.08);
}

.feature-columns {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    min-height: clamp(520px, 48vw, 760px);
    height: auto;
    background: #050505;
    overflow: hidden;
}

@media (max-width: 767px) {
    .feature-columns {
        grid-template-columns: repeat(1, 1fr);
        min-height: auto;
    }
}

.feature-column {
    position: relative;
    display: flex;
    min-height: 480px;
    padding: 3rem 1.25rem;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #fff;
    text-align: center;
    isolation: isolate;
    overflow: hidden;
    border-right: 1px solid rgba(255, 255, 255, 0.16);
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    cursor: pointer;
    pointer-events: auto !important;
    transition: background-color 0.4s ease;
}

.feature-column:last-child {
    border-right: 0;
}

.feature-column img {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(28%) blur(4px) contrast(1.05);
    transform: scale(1.02);
    transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1), filter 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.feature-column::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: rgba(0, 0, 0, 0.58);
    transition: background 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

/* 自動巡回ハイライト (湯気のように「もわっ」と浮き出る切り替え) */
.feature-column.is-highlighted::before {
    background: rgba(0, 0, 0, 0.2);
}

.feature-column.is-highlighted img {
    filter: grayscale(0%) blur(0px) contrast(1.1);
    transform: scale(1.05);
}

/* ホバー時または開いた時は手動操作を最優先 */
.feature-column:hover::before,
.feature-column.is-open::before {
    background: rgba(0, 0, 0, 0.18) !important;
}

.feature-column:hover img,
.feature-column.is-open img {
    filter: grayscale(0%) blur(0px) contrast(1.1) !important;
    transform: scale(1.06) !important;
}

.feature-column__title {
    font-family: 'Oswald', 'Zen Old Mincho', sans-serif;
    font-size: clamp(22px, 2.2vw, 40px);
    line-height: 1.2;
    letter-spacing: 0.16em;
}

.feature-column__subtitle {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: clamp(12px, 1.1vw, 16px);
    font-weight: 300;
    letter-spacing: 0.12em;
    opacity: 0.85;
    margin-top: 4px;
}

.feature-column__desc {
    font-family: 'Zen Old Mincho', serif;
    font-size: clamp(11px, 0.9vw, 13px);
    line-height: 1.65;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 0.85rem;
    padding: 0 0.5rem;
    white-space: pre-line;
}

.feature-column__more-btn {
    margin-top: 1rem;
    font-family: 'Oswald', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.16em;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    background: transparent;
    border: none;
    color: inherit;
    cursor: pointer;
    padding: 0.4rem 0.8rem;
    transition: color 0.3s ease;
}

.feature-column__more-btn .accordion-arrow {
    font-size: 11px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-column.is-open .feature-column__more-btn .accordion-arrow {
    transform: rotate(180deg);
}

/* Accordion Drawer */
.feature-column__accordion {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease, margin-top 0.4s ease;
    opacity: 0;
    width: 100%;
    max-width: 280px;
    margin-top: 0;
}

.feature-column.is-open .feature-column__accordion {
    grid-template-rows: 1fr;
    opacity: 1;
    margin-top: 1rem;
}

.accordion-content {
    overflow: hidden;
    padding-top: 0.6rem;
    border-top: 1px dashed rgba(255, 255, 255, 0.35);
}

.accordion-title {
    font-family: 'Zen Old Mincho', serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 0.6rem;
    margin-bottom: 0.6rem;
}

.accordion-tags {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.4rem 0.5rem;
}

.accordion-tags li {
    font-family: 'Zen Old Mincho', serif;
    font-size: 12px;
    color: #fff;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.feature-column:hover .feature-column__more::after {
    transform: translateX(4px);
}

.feature-column:hover img {
    filter: grayscale(0%) contrast(1.12);
    transform: scale(1.08);
}

.feature-column:hover::before {
    background: rgba(0, 0, 0, 0.34);
}

.reserve-panel {
    background: #AD5B3B;
}

.reserve-panel .w-full {
    color: #fff !important;
}

.reserve-panel .border-t,
.reserve-panel .border-b {
    border-color: rgba(255, 255, 255, 0.32) !important;
}

.reserve-panel .reserve-btn-phone {
    border-color: rgba(255, 255, 255, 0.55);
    color: #fff;
}

.reserve-panel .reserve-btn-phone:hover {
    background: #fff;
    color: #AD5B3B;
}

.luxe-full-bleed {
    position: relative;
    min-height: 52vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #0d0d0d;
}

.luxe-full-bleed__bg-video {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.luxe-full-bleed__bg-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(8px) brightness(0.22) contrast(1.1);
    transform: scale(1.06);
}

.luxe-full-bleed__bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.65) 0%, rgba(173, 91, 59, 0.28) 100%);
}

.luxe-full-bleed__copy {
    position: relative;
    z-index: 2;
    padding: 0;
    color: #fff;
}

.luxe-full-bleed__label {
    font-family: 'Oswald', sans-serif;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
}

.luxe-full-bleed h2 {
    margin: 0.75rem 0 1.35rem;
    font-size: clamp(30px, 4.5vw, 60px);
    line-height: 1.25;
    letter-spacing: 0;
}

.luxe-full-bleed__copy > p:last-child {
    max-width: 520px;
    line-height: 2;
    color: rgba(255, 255, 255, 0.88);
}

.luxe-full-bleed__video-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.luxe-full-bleed__video-card {
    width: 100%;
    max-width: 320px;
    aspect-ratio: 9 / 16;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.18);
    background: #000;
}

.luxe-full-bleed__video-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#service {
    background-image: url('img/servicebg.jpg') !important;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    border-top: 1px solid var(--soft-gray);
}

#service::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.62);
    pointer-events: none;
}

#service h2 {
    color: #fff !important;
}

#service .sticky {
    background: #f7f7f4 !important;
    border-color: #111 !important;
    box-shadow: none !important;
}

#service .sticky:nth-of-type(3),
#service .sticky:nth-of-type(5) {
    background: #fff !important;
}

#service .img-container {
    box-shadow: none !important;
    filter: grayscale(18%);
}

#service h4 {
    font-size: clamp(18px, 2vw, 28px);
    line-height: 1.7;
}

.menu-editorial {
    background: #fff !important;
}

.menu-editorial .grid > .group > div {
    background: transparent !important;
    border-top: 1px solid #111;
    border-bottom: 1px solid var(--soft-gray);
    box-shadow: none !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.menu-editorial .img-container {
    filter: grayscale(20%);
}

.menu-editorial span.inline-block {
    border-radius: 0 !important;
    background: #111;
    color: #fff;
}

/* .menu-editorial alignment override removed to allow text-center */

.reviews-editorial {
    background: #efede9 !important;
}

.reviews-editorial article {
    border-top: 1px solid #111;
    background: transparent !important;
    box-shadow: none !important;
}

.voice-stars {
    margin-bottom: 1.1rem;
    color: #111;
    font-family: 'Oswald', sans-serif;
    font-size: 15px;
    letter-spacing: 0.28em;
}

.message-editorial {
    position: relative;
    width: 100%;
    min-height: 520px;
    background-image: url('img/messagebg.jpg') !important;
    background-size: cover;
    background-position: center !important;
    background-attachment: fixed !important;
    background-repeat: no-repeat;
    color: #fff;
    isolation: isolate;
    display: flex;
    align-items: center;
}

.message-editorial::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.45));
    pointer-events: none;
}

.message-editorial .container-custom {
    position: relative;
    z-index: 10;
}

.message-editorial > .container-custom > div {
    background: transparent !important;
    box-shadow: none !important;
    border-top: 1px solid rgba(255, 255, 255, 0.26);
    border-bottom: 1px solid rgba(255, 255, 255, 0.26);
}

.message-editorial p,
.message-editorial h3 {
    color: rgba(255, 255, 255, 0.82) !important;
}

.message-editorial .space-y-4 {
    text-align: left !important;
}

.message-editorial .insta-btn-square-black {
    background: #fff;
    color: #111;
    border-color: #fff;
}

.message-editorial .insta-btn-square-black:hover {
    background: transparent;
    color: #fff;
}

.message-editorial .img-container {
    border-radius: 0 !important;
    border-color: rgba(255, 255, 255, 0.35) !important;
}

#access {
    background: #AD5B3B !important;
}

#access iframe {
    filter: none;
}

footer {
    background: #050505;
    border-color: #202020 !important;
}

footer p {
    color: #fff !important;
}

footer .font-roboto {
    font-family: 'Cormorant Garamond', serif;
}

#mobile-menu {
    background: #f7f7f4;
}

.sp-fixed-cta {
    display: none;
}

@media (max-width: 767px) {
    body {
        padding-bottom: 74px;
    }

    .sp-fixed-cta {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 120;
        display: grid;
        grid-template-columns: 1fr 1fr;
        background: #050505;
        border-top: 1px solid rgba(255, 255, 255, 0.22);
        box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.22);
        transform: translateY(0);
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .sp-fixed-cta.is-hidden-on-fv {
        opacity: 0;
        pointer-events: none;
        transform: translateY(100%);
    }

    .sp-fixed-cta a {
        min-height: 64px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-family: 'Oswald', sans-serif;
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        border-right: 1px solid rgba(255, 255, 255, 0.22);
    }

    .sp-fixed-cta a:last-child {
        border-right: 0;
        background: #fff;
        color: #111;
    }

    #top-button {
        bottom: 86px;
    }

    .fv {
        min-height: 680px;
        background-image: url('img/fvsp.jpg') !important;
    }

    .fv::after {
        background:
            linear-gradient(0deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.22) 68%, rgba(0, 0, 0, 0.34) 100%);
    }

    .fv__image-box {
        top: 0;
        width: 100%;
        height: 100%;
    }

    .fv__image-box img {
        object-position: 42% center;
    }

    .fv__content {
        padding: 110px 1.25rem 72px;
        justify-content: flex-end;
        align-items: flex-start;
        text-align: left;
    }

    .fv__small-text {
        font-size: 10px;
        line-height: 2;
    }

    .fv__title {
        width: auto;
        text-align: left;
        font-size: 22vw;
    }

    .fv__title span:last-child {
        margin-top: 1.5rem !important;
    }

    .about-editorial,
    .gallery-editorial {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    .feature-columns {
        grid-template-columns: 1fr;
        height: auto;
        min-height: 0;
        overflow-x: hidden;
        scroll-snap-type: none;
    }

    .feature-column {
        height: auto;
        min-height: 155px;
        align-items: flex-end;
        justify-content: center;
        padding: 1.25rem 2rem;
        scroll-snap-align: none;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.18);
        text-align: right;
        transition: padding 0.4s ease, background-color 0.4s ease;
    }

    .feature-column.is-open {
        align-items: center;
        text-align: center;
        padding: 2rem 1.25rem;
    }

    .feature-column.is-open::before {
        background: rgba(0, 0, 0, 0.68) !important;
    }

    .feature-column::before {
        background: linear-gradient(90deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.58));
    }

    .feature-column.is-highlighted::before {
        background: linear-gradient(90deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.28));
    }

    .feature-column img {
        object-position: center;
    }

    .feature-column__title {
        font-size: 25px;
        letter-spacing: 0.12em;
    }

    .feature-column__more {
        margin-top: 0.35rem;
        font-size: 12px;
        letter-spacing: 0.12em;
    }

    .about-editorial .img-container {
        border-radius: 999px 999px 8px 8px;
    }

    .luxe-full-bleed {
        min-height: auto;
    }

    .luxe-full-bleed__video-card {
        max-width: 270px;
        margin-top: 1rem;
    }
}

@media (max-width: 767px),
       (max-width: 1024px) and (hover: none) and (pointer: coarse) {
    #service {
        position: relative;
        background: none !important;
        isolation: isolate;
        -webkit-clip-path: inset(0);
        clip-path: inset(0);
    }

    #service::before {
        content: "";
        position: fixed;
        inset: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        z-index: 0;
        pointer-events: none;
        background-image:
            linear-gradient(rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.62)),
            url('img/servicebg.jpg');
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
    }

    #service > * {
        position: relative;
        z-index: 1;
    }

    section.fv {
        position: relative;
        background-image: none !important;
        isolation: isolate;
        -webkit-clip-path: inset(0);
        clip-path: inset(0);
    }

    section.fv::before {
        content: "";
        position: fixed;
        inset: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        z-index: 0;
        pointer-events: none;
        background-image: url('img/fvsp.jpg');
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
    }

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

    .message-editorial {
        position: relative;
        background-image: none !important;
        isolation: isolate;
        -webkit-clip-path: inset(0);
        clip-path: inset(0);
    }

    .message-editorial::before {
        content: "";
        position: fixed;
        inset: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        z-index: 0;
        pointer-events: none;
        background-image:
            linear-gradient(0deg, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.45)),
            url('img/messagebg.jpg');
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
    }

    .message-editorial > * {
        position: relative;
        z-index: 2;
    }
}

/* ==========================================================================
   Hitoma FV & About Scroll Experience
   ========================================================================== */
:root {
    --color-primary: #AD5B3B;
    --color-text: #4a3021;
}

.animate-elem {
    opacity: 0;
    translate: 0 20px;
    transition: opacity 1.4s cubic-bezier(0.16, 1, 0.3, 1), translate 1.4s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: var(--delay, 0s);
}

body.is-loaded .animate-elem {
    opacity: 1;
    translate: 0 0;
}

.scroll-area {
    height: 300vh;
    position: relative;
}

.sticky-container {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
}

.split {
    height: 100%;
    position: relative;
    will-change: opacity;
}

.split-left {
    position: relative;
    width: 44vw;
    overflow: hidden;
    background-color: #ffffff;
}

.split-left-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%) scale(1);
    animation: slowZoomVideo 20s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

@keyframes slowZoomVideo {
    0% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.1); }
    100% { transform: translate(-50%, -50%) scale(1); }
}

.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(173, 91, 59, 0.03);
}

.vertical-text {
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    writing-mode: vertical-rl;
    color: var(--color-primary);
    font-size: 0.9rem;
    z-index: 0;
    text-shadow: none;
}

.split-right {
    width: 56vw;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: calc((75vh * 2 / 3) / 2 + 5vw);
    position: relative;
    background-image: url('img/fv_bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.text-overlay-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    display: flex;
    z-index: 10;
    pointer-events: none;
}

.split-left-text {
    position: relative;
    width: 44vw;
    height: 100%;
}

.split-right-text {
    width: 56vw;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: calc((75vh * 2 / 3) / 2);
    padding-right: 2vw;
    position: relative;
}

.catchcopy-wrapper,
.vertical-text,
.scroll-indicator {
    pointer-events: auto;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 0;
    color: var(--color-primary);
}

.scroll-indicator span {
    font-size: 0.65rem;
    letter-spacing: 0;
    padding-left: 0;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background-color: rgba(74, 48, 33, 0.1);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-primary);
    animation: scrollDraw 2s infinite cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes scrollDraw {
    0% { top: -100%; }
    50% { top: 0; }
    100% { top: 100%; }
}

.catchcopy-wrapper {
    position: relative;
    max-width: 100%;
    padding: 0;
    z-index: 10;
    text-align: center;
    will-change: transform;
    transform: translateZ(0);
}

.catchcopy {
    line-height: 1.4;
    margin-bottom: 2.5rem;
    color: var(--color-text);
}

.catch-main {
    font-family: 'Inter', sans-serif;
    font-weight: 100;
    font-style: italic;
    font-size: clamp(2.5rem, 6.5vw, 5.5rem);
    line-height: 1.15;
    display: block;
}

.catch-main span {
    padding-right: 0.15em;
}

.catch-sub {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-style: italic;
}

.catch-sub,
.catch-desc {
    margin-left: 0;
}

.center-image {
    position: absolute;
    top: 50%;
    left: 44%;
    transform: translate(-50%, -50%);
    height: 75vh;
    width: calc(75vh * 2 / 3);
    object-fit: cover;
    z-index: 1;
    will-change: width, height, filter, transform, top;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transform-origin: center center;
}

.about-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 20;
    opacity: 0;
    pointer-events: none;
    color: var(--color-text);
    text-align: center;
    width: 90%;
    max-width: 800px;
}

.about-title {
    font-family: 'Inter', sans-serif;
    font-style: italic;
    font-weight: 100;
    font-size: 3.5rem;
    letter-spacing: 0;
    margin-bottom: 2rem;
    color: #ffffff;
}

.about-text {
    font-size: 1.05rem;
    line-height: 2.2;
    letter-spacing: 0;
    font-weight: 500;
    color: #ffffff;
}

.about-text p {
    margin-bottom: 1.5rem;
}

.about-text p:last-child {
    margin-bottom: 0;
}

@media (max-width: 1100px) {
    .split-left,
    .split-left-text {
        width: 40vw;
    }

    .split-right,
    .split-right-text {
        width: 60vw;
        padding-left: calc((60vh * 2 / 3) / 2 + 0.5vw);
    }

    .center-image {
        height: 60vh;
        width: calc(60vh * 2 / 3);
        left: 40%;
    }

    .catch-main {
        font-size: clamp(2.2rem, 5.8vw, 4rem);
    }

    .catch-sub,
    .catch-desc {
        margin-left: 20px;
    }
}

@media (max-width: 768px) {
    #fv {
        background-color: #111111 !important;
    }

    #fv .sticky-container {
        flex-direction: column;
        top: 60px !important;
        height: calc(100vh - 60px) !important;
        background-color: #111111 !important;
        box-sizing: border-box !important;
    }

    #fv .split {
        width: 100vw;
        height: 100%;
    }

    #fv .split-left {
        width: 100vw !important;
        height: 100%;
        display: block !important;
        position: absolute;
        inset: 0 !important;
        background-color: #111111 !important;
        border-radius: 0;
        overflow: hidden;
    }

    #fv .split-right {
        display: none !important;
    }

    #fv .text-overlay-container {
        display: block;
        position: absolute;
        inset: 0;
        width: 100vw;
        height: 100%;
        pointer-events: none;
    }

    #fv .split-left-text,
    #fv .split-right-text {
        position: absolute;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100%;
        padding: 0;
    }

    #fv .center-image {
        position: absolute;
        top: 39%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: min(76vw, 285px);
        height: min(108vw, 405px);
        object-fit: cover;
        z-index: 5;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.45);
    }

    #fv .vertical-text {
        display: none !important;
    }

    #fv .scroll-indicator {
        display: flex !important;
        position: absolute;
        bottom: 30px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        z-index: 40 !important;
        color: #ffffff !important;
    }

    #fv .scroll-indicator span {
        font-size: 0 !important;
    }

    #fv .scroll-indicator span::before {
        content: "READ MORE";
        font-family: 'Oswald', sans-serif;
        font-size: 11px;
        letter-spacing: 0.25em;
        color: #ffffff !important;
        font-weight: 500;
        text-transform: uppercase;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
    }

    #fv .scroll-line {
        width: 1px;
        height: 36px;
        background-color: rgba(255, 255, 255, 0.4);
        position: relative;
        overflow: hidden;
    }

    #fv .scroll-line::after {
        background-color: #ffffff !important;
    }

    #fv .catchcopy-wrapper {
        position: absolute;
        top: 58% !important;
        left: 0 !important;
        width: 100% !important;
        padding: 0 20px !important;
        text-align: center !important;
        z-index: 30 !important;
        text-shadow: 0 2px 12px rgba(0, 0, 0, 0.75);
    }

    #fv .catchcopy {
        margin-bottom: 5px;
    }

    #fv .catch-main {
        font-size: clamp(2rem, 11vw, 3.5rem);
        color: #ffffff !important;
        text-shadow: 0 2px 14px rgba(0, 0, 0, 0.8);
    }

    #fv .catch-desc {
        font-size: 13px;
        margin-top: 4px;
        margin-left: 0 !important;
        color: #ffffff !important;
        font-weight: 700;
        text-align: center !important;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    }

    #fv .catch-sub {
        color: #ffffff !important;
        margin-left: 0 !important;
        text-align: center !important;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    }

    #fv .about-content {
        width: 90%;
    }

    #fv .about-title {
        font-size: 2.5rem;
        margin-bottom: 1.2rem;
    }

    #fv .about-text .font-bold {
        font-size: 15px !important;
        margin-bottom: 1rem !important;
    }

    #fv .about-text p:last-child {
        font-size: 12.5px !important;
        line-height: 2.1 !important;
    }
}

/* ==========================================================================
   Hitoma Header & Hamburger Menu Styles
   ========================================================================== */
.is-fixed {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    background: rgba(173, 91, 59, 0.98) !important;
    backdrop-filter: blur(8px) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05) !important;
    animation: headerSlideDown 0.4s ease-out;
    z-index: 2000 !important;
}

@keyframes headerSlideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.hamburger-menu {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100dvh;
    background: #fff;
    z-index: 1000;
    transform: translateY(-100%);
    transition: all 0.6s cubic-bezier(0.7, 0, 0.3, 1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    opacity: 0;
    pointer-events: none;
}

.hamburger-menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}


