: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;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

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;
}

.scroll-down {
    position: absolute;
    bottom: 40px;
    right: 5%;
    z-index: 50;
    color: #333;
    /* 背景色に合わせて見やすく */
    font-size: 12px;
    letter-spacing: 0.2em;
    writing-mode: vertical-rl;
    display: flex;
    align-items: center;
    gap: 15px;
}

.scroll-down::after {
    content: "";
    display: block;
    width: 1px;
    height: 80px;
    background-color: #333;
    /* 背景色に合わせて見やすく */
}

@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;
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

/* 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: #050505;
    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 {
    inset: 0;
    width: 100%;
    height: 100%;
}

.fv__image-box img {
    filter: grayscale(18%) contrast(1.08);
    object-position: 62% center;
}

.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(5, minmax(0, 1fr));
    height: clamp(520px, 48vw, 760px);
    min-height: 0;
    background: #050505;
    overflow: hidden;
}

.feature-column {
    position: relative;
    display: flex;
    min-height: 0;
    height: 100%;
    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);
}

.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%) contrast(1.08);
    transform: scale(1.02);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-column::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: rgba(0, 0, 0, 0.48);
    transition: background 0.4s ease;
}

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

.feature-column__more {
    margin-top: 0.85rem;
    font-family: 'Oswald', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.16em;
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
}

.feature-column__more::after {
    content: "";
    width: 0;
    height: 0;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 7px solid currentColor;
    transition: transform 0.3s ease;
}

.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: #111;
}

.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: #111;
}

.luxe-full-bleed {
    position: relative;
    min-height: 52vh;
    display: grid;
    align-items: end;
    overflow: hidden;
    background: #111;
}

.luxe-full-bleed__image {
    position: absolute;
    inset: 0;
}

.luxe-full-bleed__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
    filter: grayscale(35%) contrast(1.08) brightness(0.48);
}

.luxe-full-bleed__copy {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 5.5rem 3rem;
    color: #fff;
}

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

.luxe-full-bleed h2 {
    margin: 0.75rem 0 1.35rem;
    font-size: clamp(34px, 5.2vw, 78px);
    line-height: 1.05;
    letter-spacing: 0;
}

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

#service {
    background-image: url('img/servicebg.jpeg') !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 .group,
.menu-editorial .group > div {
    text-align: left !important;
}

.menu-editorial .img-container,
.menu-editorial span.inline-block,
.menu-editorial p {
    text-align: left;
}

.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;
    background: url('img/messagebg.jpeg') center / cover no-repeat !important;
    color: #fff;
    isolation: isolate;
}

.message-editorial::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: rgba(0, 0, 0, 0.62);
}

.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: #050505 !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;
    }

    .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: 155px;
        min-height: 155px;
        align-items: flex-end;
        justify-content: center;
        padding: 0 2rem;
        scroll-snap-align: none;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.18);
        text-align: right;
    }

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

    .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: 48vh;
    }

    .luxe-full-bleed__copy {
        padding: 4.5rem 1.25rem;
    }
}

@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.jpeg');
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
    }

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