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

:root {
    --burgundy: #6B0F1A;
    --burgundy-dark: #4A0A12;
    --blush: #F5E6E0;
    --blush-light: #FAF3F0;
    --blush-muted: #EDE0D8;
    --cream: #FDFBF9;
    --charcoal: #1A1A1A;
    --gray-dark: #3D3D3D;
    --gray-mid: #6B6B6B;
    --gray-light: #9A9A9A;
    --gray-pale: #E8E4E0;
    --white: #FFFFFF;
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Montserrat', -apple-system, sans-serif;
    --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    font-weight: 300;
    color: var(--charcoal);
    background: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

address {
    font-style: normal;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ── Typography ───────────────────────────────────── */
.section-eyebrow {
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--burgundy);
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-serif);
    font-weight: 300;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.15;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

/* ── Buttons ──────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 1rem 2.2rem;
    border: 1px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn--primary {
    background: var(--burgundy);
    color: var(--white);
    border-color: var(--burgundy);
}

.btn--primary:hover {
    background: var(--burgundy-dark);
    border-color: var(--burgundy-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(107, 15, 26, 0.25);
}

.btn--outline {
    background: transparent;
    color: var(--burgundy);
    border-color: var(--burgundy);
}

.btn--outline:hover {
    background: var(--burgundy);
    color: var(--white);
}

.btn--ghost {
    background: transparent;
    color: var(--charcoal);
    border-color: var(--gray-pale);
}

.btn--ghost:hover {
    border-color: var(--charcoal);
}

.btn--light {
    background: var(--white);
    color: var(--burgundy);
    border-color: var(--white);
}

.btn--light:hover {
    background: var(--blush);
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* ── Header ───────────────────────────────────────── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253, 251, 249, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}

.site-header.scrolled {
    border-bottom-color: var(--gray-pale);
    box-shadow: 0 1px 0 rgba(0,0,0,0.04);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-serif);
}

.logo-kanji {
    font-size: 1.6rem;
    color: var(--burgundy);
    line-height: 1;
}

.logo-text {
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: var(--charcoal);
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.main-nav a {
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gray-dark);
    transition: color var(--transition);
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--burgundy);
    transition: width var(--transition);
}

.main-nav a:hover {
    color: var(--burgundy);
}

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

/* ── Nav Toggle ───────────────────────────────────── */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle-line {
    display: block;
    width: 22px;
    height: 1px;
    background: var(--charcoal);
    transition: var(--transition);
    transform-origin: center;
}

.nav-toggle.active .nav-toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}

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

.nav-toggle.active .nav-toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
}

/* ── Hero ─────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--blush);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to bottom,
            rgba(253, 251, 249, 0.3) 0%,
            rgba(253, 251, 249, 0.6) 50%,
            rgba(253, 251, 249, 0.95) 100%
        ),
        url('https://images.pexels.com/photos/35336025/pexels-photo-35336025.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1600&h=1000') center/cover no-repeat;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 720px;
    padding-top: 80px;
}

.hero-eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--burgundy);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.hero-title {
    font-family: var(--font-serif);
    font-weight: 300;
    font-size: clamp(2.4rem, 5.5vw, 4.5rem);
    line-height: 1.1;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-title em {
    font-style: italic;
    color: var(--burgundy);
}

.hero-subtitle {
    font-family: var(--font-serif);
    font-weight: 300;
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: var(--gray-mid);
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    z-index: 1;
}

.hero-scroll span {
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gray-light);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gray-light), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.4; transform: scaleY(0.6); }
}

/* ── About ────────────────────────────────────────── */
.about {
    padding: 8rem 0;
    background: var(--cream);
}

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

.about-image {
    overflow: hidden;
    position: relative;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about-image:hover img {
    transform: scale(1.02);
}

.about-content .section-title {
    margin-bottom: 1.5rem;
}

.about-content .lead {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--gray-dark);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.about-content p {
    font-size: 0.9rem;
    color: var(--gray-mid);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-divider {
    width: 40px;
    height: 1px;
    background: var(--burgundy);
    margin: 2rem 0;
}

.about-stats {
    display: flex;
    gap: 3rem;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--burgundy);
    line-height: 1;
}

.stat-label {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gray-light);
}

/* ── Menu Preview ─────────────────────────────────── */
.menu-preview {
    padding: 8rem 0;
    background: var(--blush-light);
}

.menu-header {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 4rem;
}

.menu-header .section-title {
    margin-bottom: 1rem;
}

.menu-intro {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--gray-mid);
    line-height: 1.7;
}

.menu-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.menu-category {
    padding: 2.5rem;
    background: var(--white);
    border: 1px solid var(--gray-pale);
    transition: var(--transition);
}

.menu-category:hover {
    border-color: var(--burgundy);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(107, 15, 26, 0.06);
}

.category-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 1.5rem;
    color: var(--burgundy);
}

.category-icon svg {
    width: 100%;
    height: 100%;
}

.category-title {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: 1.3rem;
    color: var(--charcoal);
    margin-bottom: 1.25rem;
}

.category-items {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.category-items li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--gray-pale);
}

.category-items li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.item-name {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--charcoal);
}

.item-desc {
    font-size: 0.75rem;
    color: var(--gray-light);
    white-space: nowrap;
}

.menu-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--gray-mid);
}

.menu-note a {
    color: var(--burgundy);
    border-bottom: 1px solid var(--burgundy);
    transition: var(--transition);
}

.menu-note a:hover {
    opacity: 0.7;
}

/* ── Gallery ──────────────────────────────────────── */
.gallery {
    padding: 8rem 0;
    background: var(--cream);
}

.gallery .container {
    text-align: center;
}

.gallery .section-title {
    margin-bottom: 3rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 1rem;
}

.gallery-item {
    overflow: hidden;
    position: relative;
}

.gallery-item--wide {
    grid-column: 1 / -1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item:hover img {
    transform: scale(1.03);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(107, 15, 26, 0);
    transition: background var(--transition);
}

.gallery-item:hover::after {
    background: rgba(107, 15, 26, 0.04);
}

/* ── Visit ────────────────────────────────────────── */
.visit {
    padding: 8rem 0;
    background: var(--blush-light);
}

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

.visit-info .section-title {
    margin-bottom: 2rem;
}

.visit-address {
    font-size: 1rem;
    color: var(--gray-dark);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.visit-phone {
    margin-bottom: 2.5rem;
}

.visit-phone a {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--burgundy);
    border-bottom: 1px solid var(--burgundy);
    transition: var(--transition);
}

.visit-phone a:hover {
    opacity: 0.7;
}

.visit-hours {
    margin-bottom: 2.5rem;
}

.visit-hours h3 {
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gray-light);
    margin-bottom: 1rem;
}

.visit-hours p {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    font-size: 0.9rem;
    color: var(--gray-dark);
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--gray-pale);
}

.visit-hours p:last-child {
    border-bottom: none;
}

.visit-hours span:first-child {
    font-weight: 400;
}

.visit-hours span:last-child {
    color: var(--gray-mid);
}

.visit-map {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--gray-pale);
    border: 1px solid var(--gray-pale);
}

.visit-map iframe {
    width: 100%;
    height: 100%;
}

/* ── CTA ──────────────────────────────────────────── */
.cta {
    padding: 8rem 0;
    background: var(--burgundy);
    text-align: center;
}

.cta .section-eyebrow {
    color: rgba(255,255,255,0.5);
}

.cta .section-title {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-text {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    max-width: 480px;
    margin: 0 auto 2.5rem;
}

.cta .btn--light svg {
    width: 16px;
    height: 16px;
}

/* ── Footer ───────────────────────────────────────── */
.site-footer {
    padding: 4rem 0 2rem;
    background: var(--charcoal);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-brand .logo-kanji {
    font-size: 2rem;
}

.footer-brand .logo-text {
    font-size: 1.2rem;
    color: var(--white);
}

.footer-brand p {
    font-size: 0.85rem;
    color: var(--gray-light);
    line-height: 1.7;
    max-width: 260px;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gray-light);
    margin-bottom: 1.25rem;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-links a {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    transition: color var(--transition);
}

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

.footer-contact p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
}

.footer-contact a {
    color: rgba(255,255,255,0.6);
    transition: color var(--transition);
}

.footer-contact a:hover {
    color: var(--white);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-bottom p {
    font-size: 0.75rem;
    color: var(--gray-light);
}

/* ── Animations ───────────────────────────────────── */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 1024px) {
    .about-grid,
    .visit-grid {
        gap: 3rem;
    }

    .menu-categories {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        width: min(320px, 85vw);
        height: 100vh;
        height: 100dvh;
        background: var(--cream);
        padding: 6rem 2.5rem 2.5rem;
        transform: translateX(100%);
        transition: transform var(--transition);
        border-left: 1px solid var(--gray-pale);
        z-index: 1000;
    }

    .main-nav.open {
        transform: translateX(0);
    }

    .main-nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .main-nav a {
        font-size: 0.85rem;
    }

    .main-nav .btn {
        margin-top: 1rem;
    }

    .hero-content {
        padding-top: 100px;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .about-grid,
    .visit-grid {
        grid-template-columns: 1fr;
    }

    .about-image {
        order: -1;
    }

    .about-stats {
        gap: 2rem;
    }

    .menu-categories {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item--wide {
        grid-column: 1;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-scroll {
        display: none;
    }

    .about,
    .menu-preview,
    .gallery,
    .visit,
    .cta {
        padding: 5rem 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1.25rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .about-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .visit-hours p {
        flex-direction: column;
        gap: 0.2rem;
    }
}

/* ── Mobile overlay ───────────────────────────────── */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(26, 26, 26, 0.4);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
}

.nav-overlay.active {
    opacity: 1;
    pointer-events: all;
}
