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

:root {
    --coral-50: #FFF0EF;
    --coral-100: #FFE0DD;
    --coral-200: #FFC4BE;
    --coral-300: #FFA89E;
    --coral-400: #FF8B7D;
    --coral-500: #E8636F;
    --coral-600: #D94F5C;
    --coral-700: #B53845;
    --charcoal-50: #F5F5F7;
    --charcoal-100: #E8E8EC;
    --charcoal-300: #A1A1AA;
    --charcoal-500: #52525B;
    --charcoal-600: #3F3F46;
    --charcoal-700: #2C2C35;
    --charcoal-800: #1C1C24;
    --charcoal-900: #13131A;
    --stone-50: #FAFAF9;
    --stone-100: #F5F5F4;
    --stone-200: #E7E5E4;
    --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'DM Sans', system-ui, sans-serif;
    color: var(--charcoal-800);
    background-color: var(--stone-50);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

/* Section Container */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--coral-500);
    background: var(--coral-50);
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--charcoal-800);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--charcoal-500);
    line-height: 1.7;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all var(--transition-smooth);
    white-space: nowrap;
}

.btn-primary {
    background: var(--coral-500);
    color: #fff;
    box-shadow: 0 4px 16px rgba(232, 99, 111, 0.3);
}

.btn-primary:hover {
    background: var(--coral-600);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(232, 99, 111, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--charcoal-700);
    border: 1.5px solid var(--charcoal-200);
}

.btn-outline:hover {
    border-color: var(--coral-500);
    color: var(--coral-600);
    background: var(--coral-50);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(4px);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1rem;
}

/* Navigation */
.nav-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 250, 249, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: all var(--transition-smooth);
}

.nav-fixed.scrolled {
    background: rgba(250, 250, 249, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--charcoal-800);
}

.nav-logo-icon {
    font-size: 1.5rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--charcoal-500);
    transition: color var(--transition-smooth);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--coral-500);
    border-radius: 1px;
    transition: width var(--transition-smooth);
}

.nav-link:hover {
    color: var(--charcoal-800);
}

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

.nav-cta {
    background: var(--coral-500);
    color: #fff !important;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 10px;
    transition: all var(--transition-smooth);
}

.nav-cta:hover {
    background: var(--coral-600);
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle-line {
    width: 24px;
    height: 2px;
    background: var(--charcoal-700);
    border-radius: 2px;
    transition: all var(--transition-smooth);
}

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

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

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

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 60px;
    background: linear-gradient(135deg, var(--stone-50) 0%, var(--coral-50) 50%, #FFF8F6 100%);
    position: relative;
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 80%, rgba(232, 99, 111, 0.06) 0%, transparent 50%),
                      radial-gradient(circle at 80% 20%, rgba(232, 99, 111, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--coral-600);
    background: rgba(232, 99, 111, 0.08);
    border: 1px solid rgba(232, 99, 111, 0.15);
    padding: 8px 16px;
    border-radius: 100px;
    margin-bottom: 24px;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--coral-500);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.3); }
}

.hero-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--charcoal-900);
    margin-bottom: 24px;
}

.hero-title-accent {
    color: var(--coral-500);
    font-style: italic;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--charcoal-500);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
}

.hero-stat {
    display: flex;
    flex-direction: column;
}

.hero-stat-number {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--charcoal-800);
}

.hero-stat-label {
    font-size: 0.8rem;
    color: var(--charcoal-300);
    font-weight: 500;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: var(--charcoal-200);
}

.hero-image-wrap {
    position: relative;
}

.hero-image-main {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.12);
}

.hero-image-main img {
    width: 100%;
    height: 680px;
    object-fit: cover;
}

.hero-image-accent {
    position: absolute;
    bottom: -20px;
    left: -40px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
    border: 4px solid var(--stone-50);
}

.hero-image-accent img {
    width: 300px;
    height: 200px;
    object-fit: cover;
}

.hero-floating-card {
    position: absolute;
    top: 40px;
    right: -20px;
    background: #fff;
    border-radius: 16px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    animation: float-card 4s ease-in-out infinite;
}

@keyframes float-card {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.floating-card-icon {
    font-size: 1.5rem;
}

.floating-card-text {
    display: flex;
    flex-direction: column;
}

.floating-card-text strong {
    font-size: 0.9rem;
    color: var(--charcoal-800);
}

.floating-card-text span {
    font-size: 0.75rem;
    color: var(--charcoal-300);
}

/* Menu Section */
.menu {
    padding: 100px 0;
    background: #fff;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 64px;
}

.menu-card {
    background: var(--stone-50);
    border-radius: 20px;
    overflow: hidden;
    transition: all var(--transition-smooth);
    border: 1px solid transparent;
}

.menu-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.08);
    border-color: var(--coral-200);
}

.menu-card-image {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.menu-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.menu-card-tag,
.menu-card-tag-pop {
    position: absolute;
    top: 16px;
    left: 16px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 8px;
}

.menu-card-tag {
    background: var(--coral-500);
    color: #fff;
}

.menu-card-tag-pop {
    background: var(--charcoal-800);
    color: #fff;
}

.menu-card-body {
    padding: 24px;
}

.menu-card-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--charcoal-800);
    margin-bottom: 8px;
}

.menu-card-desc {
    font-size: 0.9rem;
    color: var(--charcoal-500);
    line-height: 1.7;
}

.menu-cta {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, var(--coral-50) 0%, #FFF8F6 100%);
    border-radius: 20px;
}

.menu-cta p {
    font-size: 1.05rem;
    color: var(--charcoal-500);
    margin-bottom: 24px;
}

.menu-cta .btn {
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--stone-50);
}

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

.about-images {
    position: relative;
}

.about-image-main {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.1);
}

.about-image-main img {
    width: 100%;
    height: 620px;
    object-fit: cover;
}

.about-image-secondary {
    position: absolute;
    bottom: -30px;
    right: -30px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    border: 5px solid var(--stone-50);
}

.about-image-secondary img {
    width: 340px;
    height: 260px;
    object-fit: cover;
}

.about-accent-badge {
    position: absolute;
    top: -20px;
    right: 40px;
    background: var(--coral-500);
    color: #fff;
    border-radius: 20px;
    padding: 20px 24px;
    text-align: center;
    box-shadow: 0 12px 32px rgba(232, 99, 111, 0.35);
}

.accent-badge-number {
    display: block;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.accent-badge-text {
    font-size: 0.8rem;
    font-weight: 500;
    opacity: 0.9;
    line-height: 1.4;
}

.about-content .section-tag {
    margin-bottom: 16px;
}

.about-content .section-title {
    margin-bottom: 24px;
}

.about-text {
    font-size: 1.05rem;
    color: var(--charcoal-500);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 36px;
}

.about-value {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.about-value-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: var(--coral-50);
    border: 1px solid var(--coral-100);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coral-500);
}

.about-value strong {
    display: block;
    font-size: 0.95rem;
    color: var(--charcoal-800);
    margin-bottom: 2px;
}

.about-value span {
    font-size: 0.875rem;
    color: var(--charcoal-500);
    line-height: 1.5;
}

/* Freshness Section */
.freshness {
    padding: 100px 0;
    background: var(--charcoal-800);
    position: relative;
    overflow: hidden;
}

.freshness-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(232, 99, 111, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 20% 80%, rgba(232, 99, 111, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.freshness .section-container {
    position: relative;
    z-index: 1;
}

.freshness-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 64px;
}

.freshness-header .section-tag {
    background: rgba(232, 99, 111, 0.15);
    color: var(--coral-300);
}

.freshness-header .section-title {
    color: #fff;
}

.freshness-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

.freshness-step {
    text-align: center;
    padding: 0 20px;
}

.freshness-step-number {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--coral-500);
    line-height: 1;
    margin-bottom: 16px;
    opacity: 0.7;
}

.freshness-step-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.freshness-step-desc {
    font-size: 0.9rem;
    color: var(--charcoal-300);
    line-height: 1.7;
}

.freshness-step-connector {
    position: absolute;
    top: 36px;
    right: -10px;
    width: 20px;
    height: 2px;
    background: linear-gradient(90deg, var(--coral-500), transparent);
    opacity: 0.4;
}

.freshness-step:last-child .freshness-step-connector {
    display: none;
}

/* Visit Section */
.visit {
    padding: 100px 0;
    background: #fff;
}

.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
}

.visit-info .section-tag {
    margin-bottom: 16px;
}

.visit-info .section-title {
    margin-bottom: 12px;
}

.visit-subtitle {
    font-size: 1.05rem;
    color: var(--charcoal-500);
    line-height: 1.7;
    margin-bottom: 40px;
}

.visit-details {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.visit-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.visit-detail-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--coral-50);
    border: 1px solid var(--coral-100);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coral-500);
}

.visit-detail strong {
    display: block;
    font-size: 0.95rem;
    color: var(--charcoal-800);
    margin-bottom: 4px;
}

.visit-detail span {
    font-size: 0.9rem;
    color: var(--charcoal-500);
    line-height: 1.6;
}

.visit-phone {
    color: var(--coral-500);
    font-weight: 600;
    transition: color var(--transition-smooth);
}

.visit-phone:hover {
    color: var(--coral-600);
}

.visit-map {
    border-radius: 20px;
    overflow: hidden;
    min-height: 400px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--charcoal-700) 0%, var(--charcoal-900) 100%);
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(232, 99, 111, 0.2) 0%, transparent 60%);
    pointer-events: none;
}

.cta .section-container {
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.cta-subtitle {
    font-size: 1.1rem;
    color: var(--charcoal-300);
    margin-bottom: 40px;
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: var(--charcoal-900);
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 16px;
}

.footer-logo-icon {
    font-size: 1.5rem;
}

.footer-tagline {
    font-size: 0.9rem;
    color: var(--charcoal-300);
    line-height: 1.7;
    max-width: 280px;
}

.footer-nav,
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav strong,
.footer-contact strong {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--charcoal-300);
    margin-bottom: 4px;
}

.footer-nav a,
.footer-contact a {
    font-size: 0.9rem;
    color: var(--charcoal-500);
    transition: color var(--transition-smooth);
}

.footer-nav a:hover,
.footer-contact a:hover {
    color: var(--coral-300);
}

.footer-contact span {
    font-size: 0.9rem;
    color: var(--charcoal-500);
    line-height: 1.6;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 0.8rem;
    color: var(--charcoal-500);
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-image-wrap {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .hero-image-accent {
        left: -20px;
        bottom: -10px;
    }
    
    .hero-floating-card {
        right: 0;
    }
    
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .about-image-secondary {
        right: 0;
    }
    
    .freshness-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .freshness-step-connector {
        display: none;
    }
    
    .visit-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(250, 250, 249, 0.98);
        backdrop-filter: blur(16px);
        flex-direction: column;
        padding: 24px;
        gap: 20px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all var(--transition-smooth);
    }
    
    .nav-links.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    .hero-image-main img {
        height: 400px;
    }
    
    .hero-image-accent {
        display: none;
    }
    
    .hero-floating-card {
        display: none;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .freshness-steps {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }
    
    .hero-stat-divider {
        width: 40px;
        height: 1px;
    }
    
    .about-image-main img {
        height: 400px;
    }
    
    .about-image-secondary {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 16px;
    }
    
    .about-image-secondary img {
        width: 100%;
        height: 200px;
    }
    
    .about-accent-badge {
        top: -10px;
        right: 0;
    }
}
