:root {
    --bg-white: #ffffff;
    --bg-cream: #fffdfa;
    --bg-section: #fcf9f5;
    --text-dark: #332a24;
    --text-main: #5c524b;
    --text-muted: #8e847c;
    --accent: #4a7c44;
    --accent-light: #e9f0e8;
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --font-heading: 'Noto Serif JP', serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-cream);
    color: var(--text-dark);
    font-family: var(--font-main);
    line-height: 1.7;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background-color: var(--accent);
    color: var(--bg-white);
    box-shadow: 0 4px 12px rgba(74, 124, 68, 0.25);
}

.btn-primary:hover {
    background-color: #3d6638;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(74, 124, 68, 0.35);
}

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

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.logo img {
    height: 35px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.85rem;
    letter-spacing: 0.1rem;
    font-weight: 600;
    color: var(--text-main);
}

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

/* Nav Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 2000;
    padding: 0;
}

.nav-toggle span {
    width: 100%;
    height: 2px;
    background-color: var(--accent);
    border-radius: 10px;
    transition: all 0.3s ease;
}

/* Transform to X */
.nav-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.nav-res {
    color: var(--accent) !important;
    position: relative;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    text-align: center;
    padding: 120px 5% 180px;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease;
    transform: scale(1.1);
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
    transition: opacity 1.5s ease, transform 10s linear;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0.5) 100%);
    backdrop-filter: blur(2px);
    z-index: -1;
}

.hero-dots {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 20;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0,0,0,0.2);
    cursor: pointer;
    transition: 0.3s;
}

.dot.active {
    background: var(--accent);
    transform: scale(1.3);
}

.hero-subtitle {
    font-size: 0.9rem;
    letter-spacing: 0.4rem;
    margin-bottom: 2rem;
    font-weight: 700;
    color: var(--accent);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: 1.4;
    margin-bottom: 2rem;
    font-weight: 700;
    color: var(--text-dark);
}

.hero-text {
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    font-weight: 400;
    margin-bottom: 3rem;
    color: var(--text-main);
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    width: 100%;
}

/* Feature Card */
/* Catering Box Relocation */
.catering-box-wrapper {
    margin-top: 5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.catering-box {
    padding: 4rem;
    background-color: var(--accent-light);
    border-radius: 20px;
    text-align: center;
    max-width: 700px;
    width: 90%;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(74, 124, 68, 0.05);
}

.catering-box p {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 2rem;
    color: var(--accent);
    line-height: 1.5;
}

/* Gallery Slider */
.gallery {
    padding: 8rem 0;
    background-color: var(--bg-cream);
    overflow: hidden;
}

.gallery-slider {
    width: 100%;
    position: relative;
    cursor: grab;
}

.gallery-slider:active {
    cursor: grabbing;
}

.gallery-track {
    display: flex;
    gap: 20px;
    padding: 20px;
    will-change: transform;
}

.gallery-slide {
    flex: 0 0 320px;
    height: 420px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-slide:hover img {
    transform: scale(1.1);
}

/* Sections General */
.section {
    padding: 12rem 5% 8rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    letter-spacing: 0.2rem;
    text-align: center;
    margin-bottom: 5rem;
    color: var(--text-dark);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--accent);
    border-radius: 2px;
}

/* Concept Section */
.concept {
    background-color: var(--bg-cream);
}

.concept-content {
    display: flex;
    align-items: center;
    gap: 6%;
    max-width: 1100px;
    margin: 0 auto;
}

.concept-img {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.concept-text {
    flex: 1;
}

.concept-text h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.concept-text p {
    font-size: 1rem;
    color: var(--text-main);
    margin-bottom: 1.5rem;
    line-height: 1.9;
}

/* Menu Section */
.menu {
    background-color: var(--bg-white);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.menu-item {
    text-align: center;
}

.menu-img {
    margin-bottom: 1.5rem;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 4 / 3;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

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

.menu-item:hover .menu-img img {
    transform: scale(1.08);
}

.menu-info h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.menu-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 400;
}

/* Access Section */
.access {
    background-color: var(--bg-section);
}

.access-container {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
}

.access-info {
    flex: 1;
    min-width: 300px;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
}

.info-table th {
    text-align: left;
    padding: 1.5rem 0;
    color: var(--accent);
    font-size: 0.75rem;
    letter-spacing: 0.1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    width: 100px;
    vertical-align: top;
    font-weight: 700;
}

.info-table td {
    padding: 1.5rem 0;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-main);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.access-map {
    flex: 1.5;
    min-width: 300px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* Footer */
.footer {
    padding: 8rem 5% 5rem;
    text-align: center;
    background-color: var(--bg-white);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-links {
    max-width: 1100px;
    margin: 0 auto 6rem;
}

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

.footer-link-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3rem 2rem;
    background: var(--bg-section);
    border-radius: 15px;
    transition: all 0.4s ease;
}

.footer-link-item:hover {
    background: var(--accent-light);
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(74, 124, 68, 0.1);
}

.link-label {
    font-size: 0.7rem;
    letter-spacing: 0.3rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 1rem;
}

.link-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
}

.footer-bottom {
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 4rem;
}

.footer-logo img {
    height: 35px;
    margin-bottom: 2rem;
    margin-inline: auto;
}

.footer-contact {
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: var(--text-main);
}

.copyright {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* Responsive */
@media (max-width: 1000px) {
    .hero {
        padding: 100px 5% 120px;
    }
    
    .concept-content {
        flex-direction: column;
        gap: 3rem;
    }
    
    .concept-img {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 0.8rem 5%;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(15px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.5rem;
        transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        z-index: 1500;
        visibility: hidden;
    }
    
    .nav-links.active {
        transform: translateX(-100%);
        visibility: visible;
    }

    .nav-links a {
        font-size: 1.5rem;
        font-family: var(--font-heading);
    }
    
    .hero-title {
        font-size: 1.8rem;
        padding: 0 10px;
    }

    .hero-title br {
        display: none;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
        max-width: 260px;
        margin: 0 auto 2rem;
    }
    
    .hero-btns .btn {
        width: 100%;
    }

    .concept-text h3 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .catering-box {
        padding: 2.5rem 1.5rem;
        width: 100%;
        max-width: none;
    }

    .catering-box p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    .section {
        padding: 8rem 5% 5rem;
    }
}
