/* style.css */
:root {
    --color-bg: #1A1A1E;
    --color-bg-light: #25252A;
    --color-primary: #8B0000;
    --color-primary-hover: #A50000;
    --color-accent: #D4AF37;
    --color-accent-hover: #E2C45D;
    --color-text: #F4F4F4;
    --color-text-muted: #B0B0B0;
    --color-border: #333333;

    --font-heading: 'Noto Serif JP', serif;
    --font-body: 'Noto Sans JP', sans-serif;

    --transition-fast: 0.3s ease;
    --transition-smooth: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--color-text);
    text-decoration: none;
    transition: color var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
}

/* Typography Classes */
.text-center {
    text-align: left;
}

.mt-xl {
    margin-top: 3rem;
}

/* Layout */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.container-sm {
    max-width: 800px;
}

section {
    padding: 6rem 0;
}

/* Components */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 2rem;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all var(--transition-fast);
    border: none;
    letter-spacing: 0.05em;
}

.btn-primary {
    background-color: var(--color-primary);
    color: #fff;
}

.btn-primary:hover {
    background-color: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-accent);
    border: 1px solid var(--color-accent);
}

.btn-secondary:hover {
    background-color: rgba(212, 175, 55, 0.1);
}

.btn-outline-light {
    background-color: transparent;
    color: var(--color-text);
    border: 1px solid var(--color-text);
}

.btn-outline-light:hover {
    background-color: var(--color-text);
    color: var(--color-bg);
}

.btn-large {
    padding: 1rem 3rem;
    font-size: 1.1rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all var(--transition-smooth);
    background: transparent;
}

.header.scrolled {
    background: rgba(26, 26, 30, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-accent);
    letter-spacing: 0.1em;
}

.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

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

.nav-list a {
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-accent);
    transition: width var(--transition-fast);
}

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

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 30px;
    height: 2px;
    background-color: var(--color-text);
    transition: var(--transition-fast);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    animation: slowZoom 20s infinite alternate linear;
}

@keyframes slowZoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(26, 26, 30, 0.3) 0%, rgba(26, 26, 30, 0.95) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: left;
    width: 90%;
    max-width: 800px;
}

.hero-sub {
    font-size: 1.1rem;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
    letter-spacing: 0.15em;
    font-weight: 400;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.4;
    margin-bottom: 2rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.hero-text {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: 3rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 5%;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    opacity: 0.7;
}

.scroll-indicator span {
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.scroll-indicator .line {
    width: 1px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.scroll-indicator .line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-accent);
    animation: scrollLine 2s infinite cubic-bezier(0.77, 0, 0.175, 1);
}

@keyframes scrollLine {
    0% {
        top: -100%;
    }

    50% {
        top: 0;
    }

    100% {
        top: 100%;
    }
}

/* Section Header */
.section-header {
    text-align: left;
    margin-bottom: 4rem;
    border-left: 4px solid var(--color-accent);
    padding-left: 1.2rem;
}

.section-header.left-align {
    text-align: left;
}

.section-subtitle {
    display: block;
    color: var(--color-accent);
    font-family: var(--font-body);
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.section-desc {
    color: var(--color-text-muted);
    font-size: 1rem;
}

/* Features Section */
.features {
    background-color: var(--color-bg);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.feature-card {
    background-color: var(--color-bg-light);
    border-radius: 8px;
    overflow: hidden;
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
    border: 1px solid var(--color-border);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    border-color: rgba(212, 175, 55, 0.3);
}

.feature-img {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.feature-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.feature-card:hover .feature-img img {
    transform: scale(1.05);
}

.feature-content {
    padding: 2rem;
}

.feature-content h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--color-accent);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0.5rem;
}

.feature-content p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Menu Section */
.menu {
    background-color: #151518;
    position: relative;
}

.menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI4IiBoZWlnaHQ9IjgiPgo8cmVjdCB3aWR0aD0iOCIgaGVpZ2h0PSI4IiBmaWxsPSIjZmZmIiBmaWxsLW9wYWNpdHk9IjAuMDIiLz4KPHBhdGggZD0iTTAgMEw4IDhaTTAgOEw4IDBaIiBzdHJva2U9IiNmZmYiIHN0cm9rZS1vcGFjaXR5PSIwLjA1IiBzdHJva2Utd2lkdGg9IjEiLz4KPC9zdmc+');
    opacity: 0.3;
    pointer-events: none;
}

.menu-category {
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.category-title {
    font-size: 1.6rem;
    color: #ffffff;
    margin-bottom: 2rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: baseline;
    gap: 1rem;
    flex-wrap: wrap;
    font-family: var(--font-heading);
}

.category-title span {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    font-weight: normal;
    font-family: var(--font-body);
}

.menu-subcategory {
    font-size: 1.3rem;
    color: var(--color-text);
    margin: 3rem 0 1.5rem;
    padding-left: 0.8rem;
    border-left: 3px solid var(--color-primary);
    font-family: var(--font-heading);
}

.menu-note {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin: -1rem 0 2rem;
    display: block;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.menu-item.card-style {
    background-color: var(--color-bg-light);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.menu-item.card-style:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.menu-info {
    margin-bottom: 1rem;
}

.menu-name {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #fff;
    font-family: var(--font-heading);
    flex-wrap: wrap;
    line-height: 1.4;
}

.badge {
    font-family: var(--font-body);
    font-size: 0.75rem;
    background-color: var(--color-primary);
    color: white;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    font-weight: 500;
    letter-spacing: 0.05em;
    vertical-align: middle;
}

.menu-desc {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

.menu-price {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--color-accent);
    align-self: flex-start;
    margin-top: auto;
}

.tax-in {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    font-weight: normal;
    margin-left: 0.5rem;
    font-family: var(--font-body);
}

.menu-takeout {
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.1) 0%, rgba(37, 37, 42, 0.9) 100%);
    border: 1px solid rgba(139, 0, 0, 0.3);
    border-radius: 8px;
    padding: 2.5rem;
    margin-top: 4rem;
    text-align: left;
    border-left: 4px solid var(--color-primary);
}

.menu-takeout h3 {
    color: var(--color-primary);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-family: var(--font-heading);
}

.menu-takeout p {
    color: var(--color-text);
    line-height: 1.8;
}

/* Testimonials */
.testimonials {
    background-color: var(--color-bg);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background-color: var(--color-bg-light);
    padding: 2.5rem 2rem;
    border-radius: 8px;
    border-left: 3px solid var(--color-accent);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.stars {
    color: var(--color-accent);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.testimonial-text {
    font-style: italic;
    color: #e0e0e0;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.8;
}

.testimonial-author {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    font-family: var(--font-heading);
    text-align: right;
}

/* Recruitment Parallax */
.recruit {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 8rem 0;
    text-align: left;
}

.recruit-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 30, 0.85);
}

.recruit-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.recruit-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.recruit-desc {
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
    color: #e0e0e0;
}

/* Contact Section */
.contact {
    background-color: #151518;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.info-list {
    list-style: none;
}

.info-list li {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 1.5rem;
}

.info-list li:last-child {
    border: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.info-list strong {
    color: var(--color-accent);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
}

.info-list span {
    color: var(--color-text);
    font-size: 1.05rem;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background-color: var(--color-bg-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-border);
    overflow: hidden;
}

.map-inner {
    color: var(--color-text-muted);
    font-family: var(--font-heading);
    letter-spacing: 0.1em;
}

/* Footer */
.footer {
    background-color: var(--color-bg);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 6rem 0 3rem;
}

.footer-cta {
    text-align: left;
    margin-bottom: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-cta-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #fff;
}

.reserve-btn-anim {
    position: relative;
    overflow: hidden;
}

.reserve-btn-anim::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }

    20% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-accent);
    letter-spacing: 0.1em;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.footer-links a {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--color-accent);
}

.copyright {
    color: var(--color-text-muted);
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    opacity: 0.7;
}

/* Animations Trigger Classes */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 1s ease;
}

.fade-in-up.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

.delay-3 {
    transition-delay: 0.6s;
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.menu-note {
    display: block;
    color: var(--color-accent);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
    text-align: left;
}

/* Responsive Styles */
@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: var(--color-bg);
        flex-direction: column;
        justify-content: center;
        transition: right var(--transition-smooth);
        border-left: 1px solid var(--color-border);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
    }

    .nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .menu-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 2.2rem;
        text-align: left;
    }

    .hero-sub {
        font-size: 1rem;
        text-align: left;
    }

    .hero-text {
        text-align: left;
    }

    .hero-content {
        align-items: flex-start;
        text-align: left;
        padding: 0 1rem;
    }

    .scroll-indicator {
        display: none;
    }

    /* 全体テキストの左寄せ調整 */
    .section-header {
        text-align: left;
    }

    .section-header::after {
        left: 0;
        transform: none;
    }

    .welcome-title {
        text-align: left;
    }

    .welcome-text,
    .section-desc,
    .philosophy-text,
    .contact-text,
    .menu-category,
    .menu-item {
        text-align: left;
    }

    .recruit-title {
        font-size: 2.2rem;
        text-align: left;
    }

    section {
        padding: 4rem 0;
    }


}

/* =========================================
   Image Modal & Gallery Slider
========================================= */

/* Image Modal */
.image-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-modal.active {
    display: flex;
    opacity: 1;
}

.image-modal-content {
    max-width: 90%;
    max-height: 80vh;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    object-fit: contain;
}

.image-modal.active .image-modal-content {
    transform: scale(1);
}

.image-modal-caption {
    margin-top: 15px;
    color: #fff;
    font-size: 1.1rem;
    text-align: left;
    width: 90%;
    max-width: 90%;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
}

.image-modal.active .image-modal-caption {
    transform: translateY(0);
    opacity: 1;
}

.image-modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
    z-index: 1001;
}

.image-modal-close:hover {
    color: var(--color-accent);
}

.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: none;
    padding: 15px 20px;
    font-size: 30px;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
    z-index: 1002;
    border-radius: 8px;
}

.modal-nav:hover {
    background: rgba(255, 255, 255, 0.3);
    color: var(--color-primary);
}

.modal-prev {
    left: 20px;
}

.modal-next {
    right: 20px;
}

/* Gallery Slider Styles */
.gallery-slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 0;
}

.gallery-track {
    display: flex;
    width: max-content;
    will-change: transform;
    /* Hint browser to optimize this element */
    animation: scrollGallery 40s linear infinite;
}

.gallery-track:hover {
    animation-play-state: paused;
}

.gallery-slider {
    display: flex;
    gap: 15px;
    padding: 1rem 0;
    padding-right: 15px;
    /* ensure seamless gap between cloned sets */
    flex-shrink: 0;
}

@keyframes scrollGallery {
    0% {
        transform: translate3d(0, 0, 0);
        /* Force GPU acceleration */
    }

    100% {
        transform: translate3d(-50%, 0, 0);
    }
}



@media (min-width: 768px) {
    
}







/* 予約フォーム */
.reservation {
    background-color: var(--color-bg-light);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.reservation-form-container {
    background: linear-gradient(135deg, rgba(37, 37, 42, 0.95) 0%, rgba(26, 26, 30, 0.95) 100%);
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.reservation-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: flex;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
}

.form-group.half {
    flex: 1;
}

.reservation-form label {
    font-size: 0.9rem;
    color: var(--color-text);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.required {
    background-color: var(--color-accent);
    color: white;
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-weight: bold;
}

.optional {
    background-color: #666;
    color: white;
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-weight: bold;
}

.reservation-form input,
.reservation-form select,
.reservation-form textarea {
    background-color: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 1rem;
    color: var(--color-text);
    font-size: 1rem;
    font-family: var(--font-body);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    color-scheme: dark;
}

.reservation-form input:focus,
.reservation-form select:focus,
.reservation-form textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

.reservation-form select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23d4af37%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem top 50%;
    background-size: 0.65rem auto;
}

.reservation-form input::placeholder,
.reservation-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

/* アコーディオンメニュー */
.accordion-item {
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    background-color: var(--color-bg-light);
    overflow: hidden;
    transition: border-color var(--transition-fast);
}

.accordion-item.open {
    border-color: rgba(212, 175, 55, 0.3);
}

.accordion-btn {
    width: 100%;
    box-sizing: border-box;
    text-align: left;
    background: none;
    border: none;
    padding: 1.5rem 2rem;
    font-size: 1.5rem;
    font-family: var(--font-heading);
    color: #ffffff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color var(--transition-fast);
}

.accordion-btn:hover {
    background-color: rgba(255, 255, 255, 0.02);
}

.accordion-btn span:not(.accordion-icon) {
    font-size: 1rem;
    color: var(--color-text-muted);
    font-weight: normal;
    margin-left: 1rem;
}

.accordion-icon {
    position: relative;
    width: 24px;
    height: 24px;
}

.accordion-icon::before,
.accordion-icon::after {
    content: '';
    position: absolute;
    background-color: var(--color-accent);
    transition: transform var(--transition-normal) cubic-bezier(0.165, 0.84, 0.44, 1);
}

.accordion-icon::before {
    top: 11px;
    left: 4px;
    width: 16px;
    height: 2px;
}

.accordion-icon::after {
    top: 4px;
    left: 11px;
    width: 2px;
    height: 16px;
}

.accordion-item.open .accordion-icon::after {
    transform: rotate(90deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
}

.accordion-inner {
    padding: 1.5rem 2rem 2rem;
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 1.5rem;
    }

    .reservation-form-container {
        padding: 2rem 1.5rem;
    }

    .accordion-btn {
        padding: 1rem 1.5rem;
        font-size: 1.25rem;
    }

    .accordion-inner {
        padding: 1.5rem;
    }
}

/* スマートフォン横向き（Landscape）時の文字被り修正 */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        align-items: flex-start;
        padding-top: 90px;
    }

    .hero-content {
        padding-top: 0;
    }

    .hero-title {
        font-size: 1.6rem;
        margin-bottom: 0.5rem;
    }

    .hero-sub {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }

    .hero-text {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }

    .scroll-indicator {
        display: none;
    }
}

/* ------- Additional Required Styles ------- */
/* Accordion Menu */
.accordion-item {
    background-color: transparent;
}
.accordion-btn {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    color: #fff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    font-family: var(--font-heading);
    font-size: 1.6rem;
}
.accordion-icon {
    position: relative;
    width: 24px;
    height: 24px;
    display: inline-block;
}
.accordion-icon::before,
.accordion-icon::after {
    content: '';
    position: absolute;
    background-color: var(--color-accent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease;
}
.accordion-icon::before {
    width: 16px;
    height: 2px;
}
.accordion-icon::after {
    width: 2px;
    height: 16px;
}
.accordion-item.open .accordion-icon::after {
    transform: translate(-50%, -50%) scaleY(0);
}
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}
.accordion-inner {
    padding-top: 1rem;
}

/* Gallery Slider Continuous Scroll */
.gallery-slider-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}
.gallery-track {
    display: flex;
    width: max-content;
    animation: scroll-loop 40s linear infinite;
}
.gallery-track:hover {
    animation-play-state: paused;
}
.gallery-slider {
    display: flex;
    gap: 1.5rem;
    padding: 0 0.75rem;
}
.gallery-item {
    flex: 0 0 auto;
    width: 300px;
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}
.gallery-item:hover {
    transform: translateY(-5px);
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-item:hover img {
    transform: scale(1.05);
}

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

/* Image Modal */
.image-modal {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.image-modal.active {
    opacity: 1;
    pointer-events: auto;
}
.image-modal-content {
    max-width: 90%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 4px;
}
.image-modal-close {
    position: absolute;
    top: 20px; right: 30px;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
}
.image-modal-caption {
    color: #fff;
    text-align: center;
    margin-top: 15px;
    font-size: 1.1rem;
}
.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    background: rgba(0,0,0,0.5);
    border: none;
    padding: 10px 15px;
    border-radius: 50%;
}
.modal-prev { left: 20px; }
.modal-next { right: 20px; }

/* Responsive adjustments for modal */
@media (max-width: 768px) {
    .modal-prev { left: 5px; font-size: 30px; }
    .modal-next { right: 5px; font-size: 30px; }
    .image-modal-close { top: 10px; right: 15px; font-size: 30px; }
}

/* Photo Grid (for Gallery and Menu) */
.gallery-categories {
    margin-top: 3rem;
}
.gallery-category {
    margin-bottom: 4rem;
}

.gallery-category-title {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.gallery-category-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7); /* 少し明るめの白・グレー系で上品に */
    font-weight: 300;
    font-family: 'Noto Serif JP', serif; /* 上品な明朝体 */
    letter-spacing: 0.1em; /* 余韻のある見せ方のため少し文字間を空ける */
}

@media (max-width: 768px) {
    .gallery-category-subtitle {
        font-size: 0.85rem;
        margin-top: -0.8rem; /* タイトルとサブの間を詰める */
        width: 100%; /* スマホでは下段に折り返す */
    }
}

/* Original title override to handle flex */
.gallery-category-title {
    font-size: 1.8rem;
    color: var(--color-text);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-family: var(--font-heading);
}

.photo-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 1.5rem;
    padding-bottom: 1.5rem;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(212, 175, 55, 0.5) rgba(255, 255, 255, 0.05);
}

.photo-grid::-webkit-scrollbar {
    height: 8px;
}
.photo-grid::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}
.photo-grid::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.5);
    border-radius: 4px;
}

.photo-grid-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
    background-color: var(--color-bg-light);
    aspect-ratio: 3 / 2;
    height: 213.33px; /* explicitly enforce 3:2 for 320px width */
    flex: 0 0 320px;
    width: 320px;
    min-width: 0;
    scroll-snap-align: start;
}

.photo-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.photo-grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

.photo-grid-item:hover img {
    transform: scale(1.05);
}

.photo-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.photo-grid-item:hover .photo-overlay {
    opacity: 1;
}

.photo-zoom-icon {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 300;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    background: rgba(212, 175, 55, 0.8);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.8);
    transition: transform var(--transition-fast);
}

.photo-grid-item:hover .photo-zoom-icon {
    transform: scale(1);
}

/* Menu Gallery Specifics */
.menu-photo-grid .photo-grid-item {
    aspect-ratio: auto;
    min-height: 400px;
}
.menu-photo-grid .photo-grid-item img {
    object-fit: contain;
    background-color: #1a1a1e;
}

@media (max-width: 768px) {
    .photo-grid-item {
        flex: 0 0 280px;
        width: 280px;
        height: 186.66px; /* explicitly enforce 3:2 for 280px width */
    }
    .menu-photo-grid .photo-grid-item {
        min-height: 300px;
        flex: 0 0 280px;
        width: 280px;
    }
}

/* Infinite Slider Animation */
.gallery-slider-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding-bottom: 1.5rem;
}

.gallery-track {
    display: flex;
    flex-wrap: nowrap;
    width: max-content;
    animation: scroll-loop 120s linear infinite;
}

.gallery-slider {
    display: flex;
    flex-wrap: nowrap;
    flex-shrink: 0;
    gap: 1.5rem;
    padding-right: 1.5rem;
}

.gallery-slider-wrapper:hover .gallery-track {
    animation-play-state: paused;
}

@keyframes scroll-loop {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
/* LINE Button Styles */
.btn-line {
    background-color: #06C755;
    color: #ffffff;
    border: none;
    transition: all 0.3s ease;
}

.btn-line:hover {
    background-color: #05A044;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(6, 199, 85, 0.4);
    color: #ffffff;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-instagram {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: transparent;
    color: var(--color-text);
    transition: all var(--transition-fast);
    border: 1px solid rgba(255,255,255,0.2);
}

.nav-instagram:hover {
    background-color: var(--color-text);
    color: var(--color-bg);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .nav-instagram {
        display: none !important; /* スマホではインスタを非表示にしてLINEの場所を確保 */
    }
    
    .btn-text-hide {
        display: inline !important; 
        font-size: 0; /* 元の文字列を消す */
    }
    
    .nav-line .btn-text-hide::after {
        content: "LINE";
        font-size: 0.85rem;
        margin-left: 0.3rem;
    }
    
    .nav-reserve .btn-text-hide::after {
        content: "予約";
        font-size: 0.85rem;
        margin-left: 0.3rem;
    }

    .nav-reserve, .nav-line {
        padding: 0.5rem 0.6rem !important;
        font-size: 0.85rem !important;
        white-space: nowrap;
    }

    .nav-reserve svg, .nav-line svg {
        width: 18px !important;
        height: 18px !important;
        margin-right: 0 !important;
    }

    .nav-actions {
        gap: 0.3rem;
    }
}

/* スマホ用のバナーのフォントサイズ調整 */
@media (max-width: 480px) {
    .social-banner .btn-line.btn-large {
        font-size: 0.85rem !important;
        padding: 0.8rem 1rem !important;
    }
    .social-banner h3 {
        font-size: 1.1rem !important;
    }
}


/* =========================================
   Hero Slider with Slash Transition & Ken Burns
   ========================================= */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background: #1a1a1e;
    /* Reset previous transforms on container */
    transform: none;
    animation: none;
}

.hero-bg .slide {
    position: absolute;
    inset: -5%; /* Prevent edge gaps during Ken Burns */
    width: 110%;
    height: 110%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    z-index: 1;
    /* Default hidden clip-path */
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    will-change: transform, clip-path, opacity;
}

.hero-bg .slide.active {
    opacity: 1;
    z-index: 2;
    animation: kenBurnsZoom 8s linear forwards;
}

.hero-bg .slide.next {
    opacity: 1;
    z-index: 3;
    animation: kenBurnsZoom 8s linear forwards, slashIn 1.5s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

@keyframes slashIn {
    0% {
        clip-path: polygon(100% 0, 100% 0, 100% 100%, 150% 100%);
    }
    100% {
        clip-path: polygon(-50% 0, 100% 0, 100% 100%, 0 100%);
    }
}

@keyframes kenBurnsZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.05); /* Slow subtle zoom */
    }
}

/* =========================================
   Sizzling Fire Effect (Shizuru-kan)
   ========================================= */
.hero-bg {
    position: absolute;
    inset: 0;
    filter: url(#heatHaze); /* Apply Heat Haze distortion */
    transform: scale(1.05);
    animation: slowZoom 20s infinite alternate linear;
}

.hero-flicker {
    position: absolute;
    inset: 0;
    background: rgba(255, 100, 0, 0.05);
    mix-blend-mode: color-dodge;
    opacity: 0;
    animation: fireFlicker 0.15s infinite alternate;
    z-index: 1;
    pointer-events: none;
}

@keyframes fireFlicker {
    0% { opacity: 0.02; }
    100% { opacity: 0.1; }
}

.fire-sparks {
    position: absolute;
    bottom: -20%;
    left: 0;
    width: 100%;
    height: 140%;
    pointer-events: none;
    z-index: 2;
}

.spark {
    position: absolute;
    width: 3px;
    height: 3px;
    background: #ff9d00;
    border-radius: 50%;
    box-shadow: 0 0 10px #ffea00, 0 0 20px #ff6600;
    bottom: 20%;
    opacity: 0;
    animation: sparkRise 3s infinite ease-out;
}

/* Randomize Spark Positions & Timings */
.spark:nth-child(1) { left: 20%; animation-delay: 0s; width: 4px; height: 4px; }
.spark:nth-child(2) { left: 35%; animation-delay: 0.5s; width: 2px; height: 2px; }
.spark:nth-child(3) { left: 50%; animation-delay: 1.2s; width: 3px; height: 3px; }
.spark:nth-child(4) { left: 65%; animation-delay: 1.8s; width: 2px; height: 2px; }
.spark:nth-child(5) { left: 80%; animation-delay: 2.2s; width: 4px; height: 4px; }
.spark:nth-child(6) { left: 15%; animation-delay: 0.8s; width: 3px; height: 3px; }
.spark:nth-child(7) { left: 45%; animation-delay: 1.5s; width: 2px; height: 2px; }
.spark:nth-child(8) { left: 75%; animation-delay: 0.3s; width: 3px; height: 3px; }
.spark:nth-child(9) { left: 90%; animation-delay: 1.1s; width: 2px; height: 2px; }

@keyframes sparkRise {
    0% {
        transform: translateY(0) scale(1) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    50% {
        transform: translateY(-50vh) translateX(30px) scale(1.2) rotate(180deg);
        opacity: 0.6;
    }
    100% {
        transform: translateY(-110vh) translateX(-50px) scale(0.5) rotate(360deg);
        opacity: 0;
    }
}

/* =========================================
   Ultra-Smooth Canvas Fire Engine
   ========================================= */
.hero-bg {
    position: absolute;
    inset: 0;
    will-change: transform;
}

#fireCanvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    mix-blend-mode: screen; /* For additive sparks/smoke */
}

.hero-overlay-sizzle {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255, 120, 0, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
    mix-blend-mode: overlay;
}

/* =========================================
   Professional WebGL Cinemagraph Engine
   ========================================= */
.hero-bg {
    position: absolute;
    inset: 0;
    background: #000;
}

#hero-webgl-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-overlay-sizzle {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 120, 0, 0.1) 0%, transparent 60%);
    pointer-events: none;
    z-index: 2;
    mix-blend-mode: color-dodge;
}

/* =========================================
   Ultra-Smooth 2D Sizzle Engine (No CORS)
   ========================================= */
.hero-bg {
    position: absolute;
    inset: 0;
    transform: scale(1.02);
    animation: slowZoom 20s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

#fireCanvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    mix-blend-mode: screen; 
}

.hero-overlay-sizzle {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255, 120, 0, 0.05) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
    mix-blend-mode: overlay;
    animation: fireFlickerSmooth 2s infinite alternate ease-in-out;
}

@keyframes fireFlickerSmooth {
    0% { opacity: 0.5; }
    50% { opacity: 0.8; }
    100% { opacity: 1.0; }
}

/* =========================================
   Hero Video Background
   ========================================= */
.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background: #000;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(26, 26, 30, 0.4) 0%, rgba(26, 26, 30, 0.8) 100%);
    z-index: 1;
}

/* =========================================
   Reservation Confirmation Modal
========================================= */
.confirm-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    padding: 20px;
}

.confirm-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.confirm-modal-content {
    background: var(--color-bg, #1a1a1e);
    border: 1px solid var(--color-accent, #ff6600);
    border-radius: 12px;
    padding: 30px;
    width: 100%;
    max-width: 600px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.confirm-modal.active .confirm-modal-content {
    transform: scale(1);
}

.confirm-modal-title {
    color: var(--color-accent, #ff6600);
    font-size: 1.6rem;
    margin-bottom: 10px;
    text-align: center;
    font-family: var(--font-heading);
    font-weight: bold;
}

.confirm-modal-lead {
    color: var(--color-text, #e2e2e8);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
    text-align: center;
}

.confirm-summary-list {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 25px;
}

.confirm-summary-item {
    display: flex;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.confirm-summary-item:last-child {
    border-bottom: none;
}

.summary-label {
    width: 120px;
    color: var(--color-text-muted, #a0a0a8);
    font-size: 0.95rem;
    font-weight: bold;
    flex-shrink: 0;
}

.summary-value {
    color: var(--color-text, #e2e2e8);
    font-size: 0.95rem;
    line-height: 1.5;
    word-break: break-all;
    white-space: pre-wrap;
}

.confirm-modal-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.confirm-modal-actions .btn {
    flex: 1;
    max-width: 200px;
    padding: 12px 20px;
    font-size: 1rem;
    font-weight: bold;
}

@media (max-width: 480px) {
    .confirm-modal-content {
        padding: 20px 15px;
    }
    .confirm-summary-item {
        flex-direction: column;
        gap: 5px;
    }
    .summary-label {
        width: 100%;
    }
    .confirm-modal-actions {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    .confirm-modal-actions .btn {
        max-width: 100%;
        width: 100%;
    }
}

/* =========================================
   Menu Item Popup (Lunch Cards) Hover Effects
========================================= */
.menu-popup-item {
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
                box-shadow 0.3s ease, 
                border-color 0.3s ease !important;
}

.menu-popup-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(255, 102, 0, 0.2);
    border-color: var(--color-accent, #ff6600) !important;
}
