@charset "UTF-8";

/* ==========================================================================
   Design Tokens & Modern Reset
   ========================================================================== */
:root {
    --color-bg: #0A0A0A;
    --color-text: #F5F5F0;
    --color-gold: #C5A059;
    --color-gold-light: #D4B982;
    --color-white: #FFFFFF;
    --color-accent: #1A1A1A;
    --font-serif: "Noto Serif JP", serif;
    --margin-pc: 70px;
    --margin-sp: 70px;
    --container-width: 1200px;
}

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

body {
    background-color: var(--color-bg);
    background-image: url('../img/BodyBg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    color: var(--color-text);
    font-family: var(--font-serif);
    line-height: 1.8;
    letter-spacing: 0.05em;
    font-size: 16px;
    overflow-x: hidden;
    -webkit-user-select: none;
    /* Disable text selection */
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

a {
    transition: opacity 0.3s ease;
    text-decoration: none;
    color: inherit;
}

a:hover {
    opacity: 0.7;
}

/* ==========================================================================
   Reusable Components
   ========================================================================== */
.l-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 4%;
}

.c-section-padding {
    padding-top: 70px;
    padding-bottom: 70px;
}

/* Utility: Break only on SP (max-width: 781px) */
.u-sp-only-br {
    display: inline;
}

@media (min-width: 782px) {
    .u-sp-only-br {
        display: none;
    }
}

/* Section Headings - Text Only Sophisticated Design */
.c-section-header {
    text-align: center;
    margin-bottom: var(--margin-sp);
    position: relative;
    padding-bottom: 10px;
}

.c-section-header::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 1px;
    background-color: var(--color-gold);
}

.c-section-header .en-title {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    color: var(--color-gold);
    margin-bottom: 0px;
    font-weight: 500;
    text-transform: uppercase;
}

.c-section-header .jp-title {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text);
    letter-spacing: 0.1em;
}

@media (min-width: 768px) {
    .c-section-header {
        margin-bottom: var(--margin-pc);
    }

    .c-section-header .jp-title {
        font-size: 2rem;
    }
}

/* Buttons */
.c-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--color-gold) !important;
    color: var(--color-white) !important;
    border: none;
    font-weight: 500;
    transition: all 0.3s ease;
    text-align: center;
}

.c-btn:hover {
    background-color: var(--color-accent);
    transform: translateY(-2px);
}

/* ==========================================================================
   Header
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background-color: rgba(10, 10, 10, 0.95);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 4%;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header__logo {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--color-white);
}

.text-gold {
    color: var(--color-gold);
}

.header__nav {
    display: none;
}

.header__cta {
    display: none;
}

@media (min-width: 1024px) {
    .header__nav {
        display: block;
    }

    .header__nav ul {
        display: flex;
        gap: 2rem;
        list-style: none;
    }

    .header__cta {
        display: block;
    }
}

/* Hamburger Menu */
.hamburger {
    display: block;
    cursor: pointer;
    background: none;
    border: none;
    padding: 10px;
    z-index: 1100;
}

.hamburger span {
    display: block;
    width: 30px;
    height: 1px;
    background-color: var(--color-text);
    margin: 6px 0;
    transition: 0.3s;
}

@media (min-width: 1024px) {
    .hamburger {
        display: none;
    }
}

/* SP Menu Overlay */
.sp-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-bg);
    z-index: 2000;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.sp-nav.is-active {
    display: flex;
}

.sp-nav__close {
    position: absolute;
    top: 25px;
    right: 30px;
    font-size: 1rem;
    cursor: pointer;
}

.sp-nav__list {
    list-style: none;
    margin-bottom: 2rem;
}

.sp-nav__item {
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

/* ==========================================================================
   FV (First View)
   ========================================================================== */
.fv {
    width: 100%;
    height: auto;
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    /* Large screen adjustments */
}

.fv .swiper {
    width: 100%;
    height: auto;
}

.fv .swiper-slide img {
    width: 100%;
    height: auto;
    display: block;
}

/* Scroll Assist */
.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--color-white);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    z-index: 10;
    writing-mode: vertical-rl;
}

.scroll-down::after {
    content: "";
    position: absolute;
    bottom: -50px;
    left: 50%;
    width: 1px;
    height: 40px;
    background-color: var(--color-white);
    animation: scroll-line 2s infinite;
}

@keyframes scroll-line {
    0% {
        transform: scaleY(0);
        transform-origin: top;
    }

    50% {
        transform: scaleY(1);
        transform-origin: top;
    }

    50.1% {
        transform: scaleY(1);
        transform-origin: bottom;
    }

    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}

/* ==========================================================================
   CTA Section
   ========================================================================== */
.cta-banner {
    background-color: var(--color-accent);
    color: var(--color-text);
    padding: 60px 4%;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cta-banner__items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
}

@media (min-width: 768px) {
    .cta-banner__items {
        flex-direction: row;
        gap: 3rem;
    }
}

.cta-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.cta-link--tel {
    font-size: 1.5rem;
    font-weight: 700;
}

/* Instagram Button in CTA */
.cta-banner .cta-link[href*="instagram"],
.cta-banner .c-btn {
    min-width: 240px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 1rem;
    /* Reduced horizontal padding as min-width handles it */
}

.cta-banner .cta-link[href*="instagram"] {
    border: 1px solid var(--color-gold);
    border-radius: 5px;
    transition: all 0.3s ease;
    line-height: 1.5;
    /* Match approx c-btn line-height if needed */
}

.cta-banner .cta-link[href*="instagram"]:hover {
    background-color: var(--color-gold);
    color: #000;
}

/* ==========================================================================
   Two Column Layouts (About, Message, etc.)
   ========================================================================== */
.l-2col {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.l-2col__img {
    width: 100%;
}

.l-2col__img img {
    width: 100%;
    object-fit: cover;
}

.l-2col__text {
    width: 100%;
}

@media (min-width: 768px) {
    .l-2col {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    /* Asymmetric Layout: Image 40%, Text 55% */
    .l-2col--img-left .l-2col__img {
        width: 40%;
    }

    .l-2col--img-left .l-2col__text {
        width: 55%;
    }

    .l-2col--img-right .l-2col__img {
        width: 40%;
        order: 2;
    }

    .l-2col--img-right .l-2col__text {
        width: 55%;
        order: 1;
    }
}

h2.text-3xl.font-bold.mb-6,
h3.text-2xl.font-bold.mb-4 {
    color: var(--color-gold);
}

.cta-banner.mb-32 {
    margin-bottom: 0rem;
}

/* Collage and Layered Images */
.collage-img {
    position: relative !important;
    padding-bottom: 40px;
}

.collage-img .main-img {
    position: relative;
    z-index: 2;
}

.collage-img .sub-img,
.collage-img .sub-img-1,
.collage-img .sub-img-2,
.collage-img .sub-img-3 {
    position: absolute;
    bottom: -30px;
    right: -20px;
    width: 200px;
    height: 200px;
    object-fit: cover !important;
    border: 8px solid var(--color-bg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    z-index: 5;
    transition: transform 0.4s ease;
}

.l-2col--img-right .collage-img .sub-img {
    right: auto;
    left: -20px;
}

.collage-img img:hover {
    transform: scale(1.05) rotate(2deg);
}

@media (max-width: 767px) {
    .collage-img .sub-img {
        width: 140px;
        height: 140px;
        bottom: -20px;
        right: 0px;
    }
}

/* Concept Section Specific Overrides (Grid of 4) */
#tv .collage-img {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 15px !important;
    padding-bottom: 0 !important;
}

#tv .collage-img img {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 3 / 4 !important;
    object-fit: cover !important;
    position: relative !important;
    bottom: auto !important;
    right: auto !important;
    left: auto !important;
    border: none !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4) !important;
}

#tv .collage-img img:hover {
    transform: scale(1.03) !important;
}


/* Menu Sub-images in Card */
.menu-card__sub-imgs {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.menu-card__sub-imgs img {
    width: calc(50% - 7.5px) !important;
    height: 140px !important;
    object-fit: cover;
    box-shadow: 10px 10px 25px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(197, 160, 89, 0.3);
    transition: transform 0.3s ease;
}

.menu-card__sub-imgs img:hover {
    transform: translateY(-5px);
    border-color: var(--color-gold);
}

/* Message Section Refinement */
section#message {
    background: #000000;
    position: relative;
    padding: 100px 0;
}

#message .l-container {
    max-width: 800px;
}

#message .l-2col {
    flex-direction: column;
    align-items: center;
    gap: 40px;
    text-align: center;
}

#message .l-2col--img-right .l-2col__img {
    width: 180px;
    order: 1;
    /* Image at top on mobile/centered */
}

#message .l-2col--img-right .l-2col__text {
    width: 100%;
    order: 2;
    position: relative;
    padding: 60px 0px;
}

#message .l-2col__text::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 40px;
    background-color: var(--color-gold);
    opacity: 0.6;
}

#message .l-2col__text::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 40px;
    background-color: var(--color-gold);
    opacity: 0.6;
}

#message .l-2col__img img {
    border-radius: 50%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border: 1px solid var(--color-gold);
    padding: 8px;
    background: transparent;
}

#message .message-quote {
    font-size: 20px;
    line-height: 2.2;
    color: var(--color-text);
    font-weight: 500;
    margin-top: 20px;
    position: relative;
}

@media (min-width: 768px) {
    #message .message-quote {
        font-size: 20px;
    }
}

#message .owner-signature {
    margin-top: 40px;
    text-align: center;
    font-size: 1rem;
    color: var(--color-gold);
    letter-spacing: 0.3em;
    font-weight: 700;
}

section#tv {
    background: #000000bd;
}

section#gallery,
section#access {
    background-image: url('../img/Body.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Parallax effect */
    background-color: rgba(0, 0, 0, 0.7);
    background-blend-mode: overlay;
}

section#service {
    background-image: url('../img/ServiceBg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-color: rgba(0, 0, 0, 0.4);
    background-blend-mode: overlay;
}

section#service .l-2col__text {
    background: #ffffff;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

section#service .l-2col__text p {
    color: #000000;
}

/* Stylish Image Design for Service */
#service .l-2col__img {
    position: relative;
    padding: 10px;
    background: rgba(197, 160, 89, 0.1);
}

#service .l-2col__img::before {
    content: "";
    position: absolute;
    top: -10px;
    right: -10px;
    width: 60px;
    height: 60px;
    border-top: 2px solid var(--color-gold);
    border-right: 2px solid var(--color-gold);
    z-index: 1;
}

#service .l-2col__img::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: -10px;
    width: 60px;
    height: 60px;
    border-bottom: 2px solid var(--color-gold);
    border-left: 2px solid var(--color-gold);
    z-index: 1;
}

/* Stylish Image Design for About (Layered Frame) */
section#about {
    background: #1a1a1af0;
}

#about .l-2col__img {
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    #about .l-2col__img {
        padding-left: 20px;
    }

    #about .l-2col__img img {
        box-shadow: -20px 20px 50px rgba(0, 0, 0, 0.6);
        border: 1px solid rgba(197, 160, 89, 0.25);
        position: relative;
        z-index: 2;
    }

    #about .l-2col__img::before {
        content: "";
        position: absolute;
        top: -15px;
        right: -15px;
        width: 100%;
        height: 100%;
        border: 1px solid var(--color-gold);
        opacity: 0.4;
        z-index: 1;
    }
}

@media (max-width: 767px) {
    #about .l-2col__img {
        padding: 15px;
    }

    #about .l-2col__img img {
        box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.5);
    }

    #about .l-2col__img::before {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: 90%;
        height: 90%;
        border: 1px solid var(--color-gold);
        opacity: 0.3;
        z-index: 1;
    }
}

/* TV Section Stylist Design */
#tv .l-2col {
    gap: 0;
}

#tv .l-2col__text {
    background: #c5a059b5;
    padding: 50px;
    color: #ffffff;
}

#tv h2.text-3xl.font-bold.mb-6 {
    background: #ffffff;
    color: #c5a059;
    padding: 5px 5px;
    margin-bottom: 1rem;
    display: inline-block;
}

#tv .l-2col__text p,
#tv .l-2col__text li {
    color: #ffffff;
}

@media (min-width: 768px) {
    #tv .l-2col--img-left .l-2col__img {
        width: 40%;
        position: relative;
        padding-right: 20px;
    }

    #tv .l-2col__img img {
        width: 100%;
        height: auto;
        display: block;
        box-shadow: 20px 20px 50px rgba(0, 0, 0, 0.5);
        border: 1px solid rgba(197, 160, 89, 0.2);
        position: relative;
        z-index: 2;
    }

    #tv .l-2col__img::before {
        content: "";
        position: absolute;
        top: -15px;
        left: -15px;
        width: calc(100% - 20px);
        height: 100%;
        border: 1px solid var(--color-gold);
        opacity: 0.4;
        z-index: 1;
    }

    #tv .l-2col--img-left .l-2col__text {
        width: 60%;
    }
}

/* Mobile adjustments for TV image */
@media (max-width: 767px) {
    #tv .l-2col__img {
        padding: 15px;
        position: relative;
    }

    #tv .l-2col__img img {
        box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.4);
        position: relative;
        z-index: 2;
    }

    #tv .l-2col__img::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 90%;
        height: 90%;
        border: 1px solid var(--color-gold);
        opacity: 0.3;
        z-index: 1;
    }
}

@media screen and (max-width: 781px) {
    #tv .l-2col__text p.text-lg.leading-relaxed {
        text-align: center;
    }
}

/* about-section .l-container padding removed per request */

@media (min-width: 768px) {
    /* Large screen adjustments */
}

/* ==========================================================================
   Service Section (Alternating)
   ========================================================================== */
.service-item {
    margin-bottom: 80px;
}

.service-item.mb-32 {
    margin-bottom: 0 !important;
}

/* ==========================================================================
   Menu/Recommend (Parallax)
   ========================================================================== */
.parallax-section {
    position: relative;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    color: var(--color-white);
}

.parallax-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.parallax-content {
    position: relative;
    z-index: 1;
}

.menu-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.menu-card__img {
    position: relative;
}

.menu-card__img img {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 15px 15px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(197, 160, 89, 0.2);
}

.menu-card__img::after {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--color-gold);
    z-index: -1;
    opacity: 0.3;
}

@media (min-width: 768px) {
    .menu-card {
        flex-direction: row;
        align-items: center;
    }

    .menu-card__img {
        width: 40%;
        position: relative;
    }

    .menu-card__img img {
        width: 100%;
        height: auto;
        display: block;
        box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.5);
        border: 1px solid rgba(197, 160, 89, 0.3);
    }

    .menu-card__img::after {
        content: "";
        position: absolute;
        top: -15px;
        left: -15px;
        width: 100%;
        height: 100%;
        border: 1px solid var(--color-gold);
        z-index: -1;
        opacity: 0.5;
    }

    .menu-card__body {
        width: 55%;
    }
}

.menu-price {
    text-align: right;
    font-size: 1.25rem;
    color: var(--color-gold);
    font-weight: 700;
}

.tax-note {
    font-size: 16px;
    font-weight: 500;
    margin-left: 2px;
}

#menu a.text-sm.underline {
    text-decoration: none;
    border: 2px solid #c5a059;
    padding: 10px 30px;
    border-radius: 10px;
    color: #ffffff;
    display: inline-block;
    transition: all 0.3s ease;
}

#menu a.text-sm.underline:hover {
    background: #c5a059;
    color: #000;
}

#menu .menu-card__body h3 {
    background: #c5a059;
    padding: 5px 10px;
    color: #fff;
    display: inline-block;
}

#menu .opacity-70 {
    opacity: 1 !important;
}

/* ==========================================================================
   Marquee Gallery
   ========================================================================== */
.marquee-gallery {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 20px 0;
}

.marquee-gallery__inner {
    display: flex;
    width: max-content;
    animation: marquee-scroll 60s linear infinite;
}

.marquee-gallery__item {
    flex-shrink: 0;
    width: 250px;
    margin-right: 15px;
}

@media (min-width: 768px) {
    .marquee-gallery__item {
        width: 400px;
        margin-right: 30px;
    }
}

.marquee-gallery__item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    cursor: pointer;
    transition: transform 0.3s ease;
}

@media (min-width: 768px) {
    .marquee-gallery__item img {
        height: 500px;
    }
}

.marquee-gallery__item img:hover {
    transform: scale(1.02);
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Ensure no stopping on interaction */
.marquee-gallery:hover .marquee-gallery__inner,
.marquee-gallery:active .marquee-gallery__inner,
.marquee-gallery:focus .marquee-gallery__inner {
    animation-play-state: running !important;
}

/* Modal for Gallery */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
}

.modal.is-active {
    display: flex;
}

.modal__content {
    max-width: 90%;
    max-height: 90%;
}

.modal__close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 3100;
}

.modal__prev,
.modal__next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 3rem;
    cursor: pointer;
    padding: 20px;
    user-select: none;
    z-index: 3100;
    transition: color 0.3s;
}

.modal__prev:hover,
.modal__next:hover {
    color: var(--color-gold);
}

.modal__prev {
    left: 10px;
}

.modal__next {
    right: 10px;
}

/* ==========================================================================
   Voice (Carousel)
   ========================================================================== */
.voice-card {
    background: var(--color-accent);
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    height: 100%;
    color: var(--color-text);
}

.voice-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.voice-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #252525;
    display: flex;
    align-items: center;
    justify-content: center;
}

.voice-stars {
    color: #F1C40F;
    margin-bottom: 10px;
}

/* ==========================================================================
   Contact / Access
   ========================================================================== */
.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

@media (min-width: 768px) {
    .contact-grid {
        flex-direction: row;
        align-items: center;
    }

    .contact-info {
        width: 45%;
    }

    .contact-map {
        width: 50%;
    }
}

.contact-info dl {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

@media (min-width: 768px) {
    .contact-info dl {
        grid-template-columns: 130px 1fr;
    }
}

.contact-info dt {
    font-weight: 700;
    color: var(--color-gold);
}

.map-wrapper {
    position: relative;
    padding-bottom: 75%;
    /* 4:3 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

.map-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* SNS Buttons */
.sns-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.sns-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    font-size: 0.8rem;
}

@media (min-width: 768px) {
    .sns-links {
        justify-content: flex-start;
    }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background: #000;
    color: var(--color-text);
    padding: 60px 4% 60px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer__nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    list-style: none;
    font-size: 0.8rem;
}

.copyright {
    font-size: 0.7rem;
    opacity: 0.5;
}

/* ==========================================================================
   Sticky UI Elements
   ========================================================================== */
/* Top Back Button */
.top-back {
    position: fixed;
    bottom: 100px;
    right: 25px;
    width: 45px;
    height: 45px;
    background: rgba(197, 160, 89, 0.9);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.top-back:hover {
    background: var(--color-gold);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.top-back.is-visible {
    opacity: 1;
    visibility: visible;
}

/* Sticky CTA SP */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 75px;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    z-index: 1000;
    border-top: 1px solid rgba(197, 160, 89, 0.3);
}

.sticky-cta__btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--color-text);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: background 0.3s ease;
}

.sticky-cta__btn i {
    font-size: 1.2rem;
    margin-bottom: 4px;
    color: var(--color-gold);
}

.sticky-cta__btn--reserve {
    background-color: var(--color-gold) !important;
    color: #000 !important;
}

.sticky-cta__btn--reserve i {
    color: #000;
}

.sticky-cta__btn:not(.sticky-cta__btn--reserve) {
    border-right: 1px solid rgba(197, 160, 89, 0.2);
}

@media (min-width: 768px) {
    .sticky-cta {
        display: none;
    }
}

@media screen and (max-width:781px) {
    .menu-card {
        padding: 40px 10px;
    }

    section#service .l-2col__text {
        background: #ffffff;
        padding: 40px 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

    #tv .l-2col__text {
        background: #c5a059b5;
        padding: 40px 10px;
        color: #ffffff;
    }

    #tv h2.text-3xl.font-bold.mb-6 {
        font-size: 23px;
    }
}