/* ============================================
   FU ZHOU WEI ZHONG WEI — Brand Styles
   Burgundy + Blush | Minimalist | Magazine
   ============================================ */

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

:root {
    --burgundy: #6B1B2A;
    --burgundy-deep: #4A1219;
    --blush: #E8C4C4;
    --blush-light: #F5E6E6;
    --blush-pale: #FBF5F5;
    --cream: #FDF8F8;
    --white: #FEFCFC;
    --text-dark: #1A1214;
    --text-mid: #4A3F42;
    --text-light: #8A787C;
    --text-faint: #B8A4A8;
    --line: rgba(107, 27, 42, 0.12);
    --line-strong: rgba(107, 27, 42, 0.25);
    
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Inter', -apple-system, sans-serif;
    
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

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(--text-dark);
    background-color: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
}

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

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

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 clamp(1.5rem, 4vw, 4rem);
    transition: all 0.5s var(--ease-out);
}

.nav.scrolled {
    background: rgba(253, 248, 248, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--line);
}

.nav-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    transition: height 0.4s var(--ease-out);
}

.nav.scrolled .nav-inner {
    height: 64px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    z-index: 1001;
}

.nav-logo-char {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--burgundy);
    line-height: 1;
}

.nav-logo-text {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-mid);
}

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

.nav-links a {
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-mid);
    position: relative;
    transition: color 0.3s ease;
}

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

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

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

.nav-cta {
    padding: 0.6rem 1.4rem;
    border: 1px solid var(--line-strong);
    border-radius: 100px;
    transition: all 0.3s ease !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: var(--burgundy);
    border-color: var(--burgundy);
    color: var(--white) !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
    padding: 8px;
}

.nav-toggle-line {
    display: block;
    width: 22px;
    height: 1px;
    background: var(--text-dark);
    transition: all 0.3s var(--ease-out);
    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) {
    transform: rotate(-45deg) translate(4px, -4px);
}

.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(253, 248, 248, 0.97);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--ease-out);
}

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

/* ============================================
   HERO
   ============================================ */
.hero {
    min-height: 100vh;
    padding: calc(80px + clamp(2rem, 5vh, 5rem)) clamp(1.5rem, 4vw, 4rem) clamp(3rem, 6vh, 6rem);
    max-width: 1400px;
    margin: 0 auto;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 6rem);
    align-items: center;
    min-height: calc(100vh - 200px);
}

.hero-eyebrow {
    font-size: 0.68rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--burgundy);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hero-eyebrow::before {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: var(--burgundy);
}

.hero-headline {
    font-family: var(--font-serif);
    font-weight: 300;
    line-height: 1.05;
    margin-bottom: 2rem;
}

.headline-line {
    display: block;
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

.headline-line .italic {
    font-style: italic;
    color: var(--burgundy);
    font-weight: 300;
}

.hero-subtitle {
    font-size: 1rem;
    font-weight: 300;
    color: var(--text-light);
    max-width: 380px;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.hero-meta {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 1rem 2rem;
    border-radius: 100px;
    transition: all 0.4s var(--ease-out);
}

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

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

.btn-filled {
    background: var(--burgundy);
    color: var(--white);
    border: 1px solid var(--burgundy);
}

.btn-filled:hover {
    background: var(--burgundy-deep);
    border-color: var(--burgundy-deep);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(107, 27, 42, 0.25);
}

.hero-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    color: var(--text-light);
    transition: color 0.3s ease;
}

.hero-phone:hover {
    color: var(--burgundy);
}

.hero-right {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 200px 200px 12px 12px;
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--ease-out);
}

.hero-image-wrapper:hover img {
    transform: scale(1.03);
}

.hero-image-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    border: 1px solid var(--blush);
    border-radius: 50%;
    pointer-events: none;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: clamp(1.5rem, 4vw, 4rem);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-faint);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--burgundy), 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); }
}

/* ============================================
   SECTION COMMON
   ============================================ */
.section-eyebrow {
    font-size: 0.68rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--burgundy);
    margin-bottom: 1.5rem;
}

.section-title {
    font-family: var(--font-serif);
    font-weight: 300;
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.15;
    color: var(--text-dark);
    letter-spacing: -0.01em;
}

.text-burgundy {
    color: var(--burgundy);
    font-style: italic;
}

/* ============================================
   STORY
   ============================================ */
.story {
    padding: clamp(5rem, 12vh, 10rem) clamp(1.5rem, 4vw, 4rem);
    max-width: 1400px;
    margin: 0 auto;
}

.story-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 6vw, 8rem);
    align-items: start;
}

.story-content {
    padding-top: 2rem;
}

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

.story-body {
    font-size: 1rem;
    font-weight: 300;
    color: var(--text-mid);
    line-height: 1.9;
    margin-bottom: 1.5rem;
    max-width: 480px;
}

.story-image-col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.story-image-main {
    border-radius: 8px;
    overflow: hidden;
}

.story-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s var(--ease-out);
}

.story-image-main:hover img {
    transform: scale(1.03);
}

.story-image-secondary {
    border-radius: 8px;
    overflow: hidden;
    margin-top: -3rem;
    margin-left: 2rem;
    border: 4px solid var(--cream);
}

.story-image-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s var(--ease-out);
}

.story-image-secondary:hover img {
    transform: scale(1.03);
}

/* ============================================
   CUISINE
   ============================================ */
.cuisine {
    padding: clamp(5rem, 12vh, 10rem) clamp(1.5rem, 4vw, 4rem);
    background: var(--blush-pale);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.cuisine-header {
    max-width: 1400px;
    margin: 0 auto clamp(4rem, 8vh, 6rem);
}

.cuisine-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(1.5rem, 3vw, 3rem);
}

.cuisine-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
}

.cuisine-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(107, 27, 42, 0.08);
}

.cuisine-card-image {
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.cuisine-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out);
}

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

.cuisine-card-content {
    padding: clamp(1.5rem, 3vw, 2.5rem);
}

.cuisine-card-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 0.85rem;
    color: var(--blush);
    margin-bottom: 0.8rem;
    letter-spacing: 0.05em;
}

.cuisine-card-content h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    letter-spacing: -0.01em;
}

.cuisine-card-content p {
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--text-light);
    line-height: 1.8;
}

.cuisine-cta {
    max-width: 1400px;
    margin: clamp(3rem, 6vh, 5rem) auto 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cuisine-cta-text {
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--text-light);
    max-width: 400px;
    line-height: 1.7;
}

/* ============================================
   VISIT
   ============================================ */
.visit {
    padding: clamp(5rem, 12vh, 10rem) clamp(1.5rem, 4vw, 4rem);
    max-width: 1400px;
    margin: 0 auto;
}

.visit-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 6vw, 8rem);
    align-items: start;
}

.visit-details {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.visit-detail {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
}

.visit-detail-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--line-strong);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--burgundy);
    flex-shrink: 0;
}

.visit-detail-label {
    font-size: 0.68rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-faint);
    margin-bottom: 0.3rem;
}

.visit-detail-value {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.6;
}

.visit-link {
    transition: color 0.3s ease;
}

.visit-link:hover {
    color: var(--burgundy);
}

.visit-map {
    position: relative;
}

.map-placeholder {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 400px;
}

.map-placeholder::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(253, 248, 248, 0.3), transparent 40%);
    pointer-events: none;
}

.map-link {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--white);
    background: var(--burgundy);
    padding: 0.7rem 1.2rem;
    border-radius: 100px;
    transition: all 0.3s ease;
    z-index: 1;
}

.map-link:hover {
    background: var(--burgundy-deep);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(107, 27, 42, 0.3);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: clamp(3rem, 6vh, 5rem) clamp(1.5rem, 4vw, 4rem);
    border-top: 1px solid var(--line);
    background: var(--white);
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.footer-logo-char {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--burgundy);
    line-height: 1;
}

.footer-name {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text-dark);
    letter-spacing: 0.02em;
}

.footer-tagline {
    font-size: 0.75rem;
    font-weight: 300;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-faint);
}

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

.footer-link {
    font-size: 0.82rem;
    font-weight: 300;
    color: var(--text-mid);
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--burgundy);
}

.footer-divider {
    color: var(--text-faint);
    font-size: 0.8rem;
}

.footer-copy {
    font-size: 0.72rem;
    font-weight: 300;
    color: var(--text-faint);
    letter-spacing: 0.05em;
}

/* ============================================
   ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-right {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }

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

    .hero-eyebrow {
        justify-content: center;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-meta {
        justify-content: center;
    }

    .story-layout {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .story-content {
        order: 1;
    }

    .story-image-col {
        order: 2;
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }

    .cuisine-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .cuisine-cta {
        flex-direction: column;
        text-align: center;
    }

    .visit-layout {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .visit-map {
        order: -1;
    }
}

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

    .nav-toggle {
        display: flex;
    }

    .nav-links.mobile-open {
        display: flex;
        flex-direction: column;
        position: fixed;
        inset: 0;
        background: rgba(253, 248, 248, 0.98);
        backdrop-filter: blur(30px);
        justify-content: center;
        align-items: center;
        gap: 2rem;
        z-index: 1000;
    }

    .nav-links.mobile-open a {
        font-size: 1rem;
        letter-spacing: 0.15em;
    }

    .hero {
        padding-top: calc(80px + clamp(1.5rem, 4vw, 3rem));
    }

    .hero-grid {
        min-height: auto;
    }

    .hero-image-wrapper {
        border-radius: 160px 160px 12px 12px;
    }

    .hero-image-accent {
        width: 80px;
        height: 80px;
        top: -12px;
        right: -12px;
    }

    .headline-line {
        font-size: clamp(2.2rem, 10vw, 3.5rem);
    }

    .story-image-secondary {
        margin-top: -2rem;
        margin-left: 1rem;
    }

    .cuisine-cta {
        flex-direction: column;
        gap: 1.5rem;
    }

    .visit-detail-value {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 15px;
    }

    .hero {
        padding-left: 1.2rem;
        padding-right: 1.2rem;
    }

    .hero-scroll-indicator {
        display: none;
    }

    .story {
        padding-left: 1.2rem;
        padding-right: 1.2rem;
    }

    .cuisine {
        padding-left: 1.2rem;
        padding-right: 1.2rem;
    }

    .visit {
        padding-left: 1.2rem;
        padding-right: 1.2rem;
    }
}
