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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: #3a3a3a;
    background: linear-gradient(135deg, #fefcf8 0%, #f7f5f0 50%, #f2efea 100%);
    overflow-x: hidden;
}

/* Subtle texture overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 25% 75%, rgba(255,255,255,0.3) 0%, transparent 50%),
        radial-gradient(circle at 75% 25%, rgba(245,240,235,0.4) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(250,248,243,0.2) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(24px);
    background: rgba(254, 252, 248, 0.85);
    border-bottom: 1px solid rgba(58, 58, 58, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.25rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    font-size: 1.5rem;
    font-weight: 500;
    color: #3a3a3a;
    text-decoration: none;
    letter-spacing: -0.01em;
    transition: all 0.3s ease;
}

.logo:hover {
    color: #2a2a2a;
}

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

.nav-links a {
    text-decoration: none;
    color: #6a6a6a;
    font-weight: 400;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: #8a7a6b;
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: #3a3a3a;
}

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

.nav-links a.active {
    color: #3a3a3a;
    font-weight: 500;
}

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

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #3a3a3a;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(254, 252, 248, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(58, 58, 58, 0.08);
    padding: 1rem;
    box-shadow: 0 4px 20px rgba(58, 58, 58, 0.1);
}

.mobile-menu.active {
    display: block;
}

.mobile-menu a {
    display: block;
    color: #6a6a6a;
    text-decoration: none;
    padding: 1rem;
    border-bottom: 1px solid rgba(58, 58, 58, 0.08);
    font-weight: 400;
    transition: color 0.3s ease;
}

.mobile-menu a:hover {
    color: #3a3a3a;
}

.mobile-menu a:last-child {
    border-bottom: none;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 2.5rem 4rem;
    position: relative;
    z-index: 1;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 6rem;
    align-items: center;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    font-weight: 300;
    margin-bottom: 2rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #2a2a2a;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #5a5a5a;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-weight: 300;
}

.hero-description {
    font-size: 1.1rem;
    color: #6a6a6a;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.hero-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    align-items: center;
}

.hero-link {
    padding: 0.75rem 1.75rem;
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(58, 58, 58, 0.1);
    border-radius: 16px;
    color: #3a3a3a;
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
    backdrop-filter: blur(12px);
}

.hero-link:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.hero-link.primary {
    background: #3a3a3a;
    color: white;
    border-color: #3a3a3a;
}

.hero-link.primary:hover {
    background: #2a2a2a;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Optimized Image Loading Styles */
.image-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: inherit;
}

.image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: inherit;
    color: inherit;
    transition: opacity 0.3s ease;
    z-index: 1;
    border-radius: inherit;
}

.image-element {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transition: opacity 0.5s ease;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    border-radius: inherit;
}

.image-element.loaded {
    opacity: 1;
}

.image-element.loaded + .image-placeholder {
    opacity: 0;
}

.image-skeleton {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0.2) 25%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0.2) 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    z-index: 0;
    border-radius: inherit;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.profile-placeholder {
    width: 400px;
    height: 300px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    border-radius: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: #8a7a6b;
    border: 1px solid rgba(58, 58, 58, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transform: rotate(-1deg);
}

.profile-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #e8ddd3, #ddd2c7, #e8ddd3);
    z-index: 3;
}

.profile-placeholder:hover {
    transform: rotate(0.5deg) translateY(-8px) scale(1.02);
    box-shadow: 
        0 16px 32px rgba(0, 0, 0, 0.16),
        0 6px 12px rgba(0, 0, 0, 0.12);
}

.placeholder-text {
    position: absolute;
    bottom: 1.5rem;
    font-size: 0.9rem;
    color: #9a9a9a;
    font-weight: 300;
    z-index: 1;
}

/* Origin Story Section */
.origin-story {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f5f2f0 0%, #e6e0d8 100%);
    position: relative;
    z-index: 1;
}

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

.section-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 300;
    margin-bottom: 4rem;
    color: #2a2a2a;
    letter-spacing: -0.015em;
}

.story-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: flex-start;
    margin-bottom: 4rem;
}

/* Profile picture styling */
.story-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
}

.story-profile-pic {
    width: 160px;
    height: 160px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #8a7a6b;
    border: 1px solid rgba(58, 58, 58, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.08),
        0 3px 8px rgba(0, 0, 0, 0.04);
}

.story-profile-pic::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255,255,255,0.3) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 3;
}

.story-profile-pic:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 
        0 16px 32px rgba(0, 0, 0, 0.12),
        0 6px 12px rgba(0, 0, 0, 0.08);
}

.story-text p {
    font-size: 1.1rem;
    color: #5a5a5a;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-weight: 300;
}

.timeline-highlights {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(16px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(58, 58, 58, 0.06);
}

.highlight-item {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(58, 58, 58, 0.06);
    transition: all 0.3s ease;
}

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

.highlight-year {
    font-size: 0.8rem;
    color: #8a7a6b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.highlight-title {
    font-weight: 500;
    color: #3a3a3a;
    margin-bottom: 0.25rem;
}

.highlight-description {
    font-size: 0.9rem;
    color: #6a6a6a;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.see-details-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0;
    background: none;
    border: none;
    color: #8a7a6b;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    transition: all 0.3s ease;
    cursor: pointer;
}

.see-details-btn:hover {
    color: #6a5a4b;
    transform: translateX(4px);
}

.arrow {
    transition: transform 0.3s ease;
    font-size: 0.75rem;
}

.legacy-links h3 {
    font-size: 1.3rem;
    font-weight: 500;
    color: #3a3a3a;
    margin-bottom: 1.5rem;
    text-align: center;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.legacy-link {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(16px);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(58, 58, 58, 0.06);
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.legacy-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.link-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.link-title {
    font-weight: 500;
    color: #3a3a3a;
    margin-bottom: 0.25rem;
}

.link-description {
    font-size: 0.85rem;
    color: #6a6a6a;
    line-height: 1.3;
}

.publications-section {
    margin-top: 3rem;
}

.publications-section h3 {
    font-size: 1.3rem;
    font-weight: 500;
    color: #3a3a3a;
    margin-bottom: 1.5rem;
    text-align: center;
}

.publications-list {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(16px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(58, 58, 58, 0.06);
}

.publications-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.publications-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(58, 58, 58, 0.06);
    color: #5a5a5a;
    line-height: 1.5;
    font-weight: 300;
}

.publications-list li:last-child {
    border-bottom: none;
}

.publications-list a {
    color: #8a7a6b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.publications-list a:hover {
    color: #6a5a4b;
    text-decoration: underline;
}

/* Values Section */
.values {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f7f5f1 0%, #efebe5 100%);
    position: relative;
    z-index: 1;
}

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

.values-card {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    border: 1px solid rgba(58, 58, 58, 0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.values-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(232, 221, 211, 0.6), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.values-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.7);
}

.values-card:hover::before {
    opacity: 1;
}

.values-icon {
    font-size: 2.2rem;
    margin-bottom: 1.25rem;
    display: block;
    opacity: 0.9;
    transition: transform 0.3s ease;
}

.values-card:hover .values-icon {
    transform: scale(1.05);
}

.values-card h3 {
    font-size: 1.1rem;
    font-weight: 500;
    color: #2a2a2a;
    margin-bottom: 1rem;
    letter-spacing: -0.005em;
    line-height: 1.3;
}

.values-card p {
    color: #5a5a5a;
    line-height: 1.5;
    font-weight: 300;
    font-size: 0.9rem;
}

/* Memories Section */
.memories {
    padding: 8rem 0;
    background: rgba(255, 255, 255, 0.4);
    position: relative;
    z-index: 1;
}

.polaroid-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    justify-content: center;
}

.polaroid {
    background: #ffffff;
    padding: 19px;
    border-radius: 6px;
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.12),
        0 3px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    transform-origin: center center;
    width: 233px;
    height: 301px;
    flex-shrink: 0;
    flex-grow: 0;
    display: flex;
    flex-direction: column;
}

.polaroid:hover {
    transform: rotate(0deg) translateY(-8px) scale(1.02) !important;
    box-shadow: 
        0 16px 32px rgba(0, 0, 0, 0.16),
        0 6px 12px rgba(0, 0, 0, 0.12);
}

.polaroid-photo {
    width: 194px;
    height: 235px;
    background: linear-gradient(135deg, #e8ddd3, #ddd2c7);
    border-radius: 3px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #8a7a6b;
    margin-bottom: 10px;
    flex: 1;
}

.polaroid-caption {
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: 'Caveat', cursive;
    font-size: 16px;
    color: #4a4a4a;
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 1;
    flex-shrink: 0;
}

/* Dietary Accommodations */
.dietary-accommodations {
    padding: 8rem 0;
    background: rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 1;
}

.accommodations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
    margin-top: 3rem;
}

.accommodation-item {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    border: 1px solid rgba(58, 58, 58, 0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.accommodation-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(232, 221, 211, 0.6), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.accommodation-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.8);
}

.accommodation-item:hover::before {
    opacity: 1;
}

.accommodation-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1.5rem;
}

.accommodation-item h3 {
    font-size: 1.3rem;
    font-weight: 500;
    color: #3a3a3a;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.accommodation-item p {
    color: #6a6a6a;
    line-height: 1.6;
    font-size: 0.95rem;
}

.coming-soon-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.coming-soon-list li {
    color: #6a6a6a;
    font-size: 0.95rem;
    padding: 0.25rem 0;
    position: relative;
    padding-left: 1rem;
}

.coming-soon-list li::before {
    content: '•';
    color: #8a7a6b;
    position: absolute;
    left: 0;
}

.menu-addons {
    font-size: 0.85rem;
    color: #8a7a6b;
    font-style: italic;
    margin-top: 0.5rem;
    border-top: 1px solid rgba(138, 122, 107, 0.2);
    padding-top: 0.5rem;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #3a3a3a 0%, #2a2a2a 100%);
    color: #e5e5e5;
    padding: 4rem 0 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    transform: translateY(-3px);
}

.footer-social-icon {
    width: 24px;
    height: 24px;
    filter: brightness(0) saturate(100%) invert(100%);
    transition: all 0.3s ease;
}

.footer-social-link:hover .footer-social-icon {
    transform: scale(1.15);
    filter: brightness(0) saturate(100%) invert(90%);
}

footer p {
    color: #b5b5b5;
    font-weight: 300;
}

/* Responsive */
@media (max-width: 1024px) {
    .story-content {
        grid-template-columns: 160px 1fr 0.8fr;
        gap: 2rem;
    }
    
    .story-profile-pic {
        width: 140px;
        height: 140px;
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 1rem 1.5rem;
    }

    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }

    .hero {
        padding: 6rem 1.5rem 4rem;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .container {
        padding: 0 1.5rem;
    }

    .profile-placeholder {
        width: 280px;
        height: 280px;
        font-size: 3rem;
    }

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

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .footer-social {
        gap: 1.5rem;
    }
    
    .footer-social-icon {
        width: 22px;
        height: 22px;
    }

    .memories {
        padding: 6rem 0;
    }

    .origin-story {
        padding: 6rem 0;
    }

    .story-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .story-profile {
        margin-bottom: 1.5rem;
    }
    
    .story-profile-pic {
        width: 120px;
        height: 120px;
        font-size: 2rem;
    }

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

    .legacy-link {
        padding: 1rem;
    }

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

    .polaroid {
        width: 180px;
        height: 235px;
        padding: 15px 15px 37px 15px;
    }

    .polaroid-photo {
        width: 150px;
        height: 180px;
        font-size: 1.5rem;
        margin-bottom: 8px;
    }

    .polaroid-caption {
        font-size: 14px;
        height: 15px;
    }

    .values {
        padding: 6rem 0;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .values-card {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 5rem 1rem 3rem;
    }

    .memories {
        padding: 5rem 0;
    }

    .origin-story {
        padding: 5rem 0;
    }

    .container {
        padding: 0 1rem;
    }

    .polaroid {
        width: 160px;
        height: 210px;
        padding: 12px 12px 32px 12px;
    }

    .polaroid-photo {
        width: 136px;
        height: 160px;
        font-size: 1.2rem;
        margin-bottom: 6px;
    }

    .polaroid-caption {
        font-size: 13px;
        height: 14px;
    }

    .polaroid-grid {
        gap: 1rem;
        padding: 1rem;
    }

    .values {
        padding: 5rem 0;
    }
    
    .values-card {
        padding: 1.5rem;
    }
}

@media (max-width: 320px) {
    .polaroid-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .polaroid {
        width: 140px;
        height: 190px;
        padding: 10px 10px 28px 10px;
    }

    .polaroid-photo {
        width: 120px;
        height: 145px;
        font-size: 1rem;
        margin-bottom: 5px;
    }

    .polaroid-caption {
        font-size: 12px;
        height: 12px;
    }
}

/* Cafe Specific Styles */
.cafe-hero {
    background: linear-gradient(135deg, #f9f7f3 0%, #f4f1eb 50%, #efebe5 100%);
}

.cafe-hours {
    margin-top: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(138, 122, 107, 0.1);
    display: inline-block;
}

.cafe-hours p {
    margin: 0;
    font-size: 0.95rem;
    color: #6a6a6a;
    font-style: italic;
}

.cafe-menu {
    padding: 8rem 0;
    background: rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 1;
}

.menu-category {
    margin-bottom: 4rem;
}

.menu-category:last-child {
    margin-bottom: 0;
}

.menu-category-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 400;
    color: #2a2a2a;
    margin-bottom: 2.5rem;
    text-align: center;
    letter-spacing: -0.01em;
    position: relative;
}

.menu-category-title::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #8a7a6b, transparent);
}

.menu-items {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    gap: 2rem;
}

.menu-item {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(58, 58, 58, 0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.menu-item-image {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(245, 240, 235, 0.3);
}

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

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

.menu-item-content {
    flex: 1;
    min-width: 0;
}

.menu-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(232, 221, 211, 0.6), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.8);
}

.menu-item:hover::before {
    opacity: 1;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
    gap: 1rem;
}

.menu-item-header h4 {
    font-size: 1.2rem;
    font-weight: 500;
    color: #2a2a2a;
    margin: 0;
    letter-spacing: -0.005em;
    line-height: 1.3;
}

.menu-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: #8a7a6b;
    white-space: nowrap;
    font-family: 'Caveat', cursive;
}

.menu-description {
    color: #5a5a5a;
    line-height: 1.6;
    margin: 0;
    font-weight: 300;
    font-size: 0.95rem;
}

.cafe-philosophy {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f7f5f1 0%, #efebe5 100%);
    position: relative;
    z-index: 1;
}

.philosophy-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.philosophy-item {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    border: 1px solid rgba(58, 58, 58, 0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.philosophy-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(232, 221, 211, 0.6), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.philosophy-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.7);
}

.philosophy-item:hover::before {
    opacity: 1;
}

.philosophy-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: block;
    opacity: 0.9;
    transition: transform 0.3s ease;
}

.philosophy-item:hover .philosophy-icon {
    transform: scale(1.05);
}

.philosophy-item h3 {
    font-size: 1.2rem;
    font-weight: 500;
    color: #2a2a2a;
    margin-bottom: 1rem;
    letter-spacing: -0.005em;
    line-height: 1.3;
}

.philosophy-item p {
    color: #5a5a5a;
    line-height: 1.6;
    font-weight: 300;
    font-size: 0.95rem;
    margin: 0;
}

/* Cafe Mobile Responsive */
@media (max-width: 768px) {
    .cafe-menu {
        padding: 6rem 0;
    }
    
    .cafe-philosophy {
        padding: 6rem 0;
    }
    
    .dietary-accommodations {
        padding: 6rem 0;
    }
    
    .accommodations-grid {
        gap: 2rem;
    }
    
    .accommodation-item {
        padding: 2rem;
    }
    
    .menu-item {
        padding: 1.5rem;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .menu-item-image {
        width: 100px;
        height: 100px;
    }
    
    .menu-item-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .menu-item-header h4 {
        font-size: 1.1rem;
    }
    
    .philosophy-item {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .cafe-menu {
        padding: 5rem 0;
    }
    
    .cafe-philosophy {
        padding: 5rem 0;
    }
    
    .menu-items {
        gap: 1.5rem;
    }
    
    .menu-item {
        padding: 1.25rem;
    }
    
    .philosophy-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .philosophy-item {
        padding: 1.5rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}