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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', 'Yu Gothic', 'Hiragino Sans', sans-serif;
    line-height: 1.8;
    color: #1a1a1a;
    background: #ffffff;
    font-weight: 300;
}

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

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 60px;
}

/* Design Switcher */
.design-switcher {
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    gap: 4px;
}

.switch-link {
    padding: 8px 16px;
    background: transparent;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 400;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.switch-link:hover {
    background: #1a1a1a;
    color: white;
    border-color: #1a1a1a;
}

/* Header */
header {
    padding: 80px 0 60px;
    border-bottom: 1px solid #e0e0e0;
}

.header-content {
    text-align: center;
}

.brand-name {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.brand-main {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 8px;
    text-transform: uppercase;
}

.brand-sub {
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 2px;
    color: #666;
}

/* Hero Section */
.hero {
    padding: 120px 0;
}

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

.hero h2 {
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: 4px;
    margin-bottom: 40px;
}

.divider {
    width: 60px;
    height: 1px;
    background: #1a1a1a;
    margin: 0 auto 40px;
}

.hero p {
    font-size: 1.1rem;
    color: #666;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* Section Labels */
.section-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #999;
    margin-bottom: 20px;
    font-weight: 400;
}

/* Philosophy Section */
.philosophy {
    padding: 100px 0;
    background: #fafafa;
}

.philosophy-content {
    max-width: 600px;
    margin: 0 auto;
}

.philosophy h3 {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.philosophy p {
    font-size: 1rem;
    line-height: 2;
    color: #666;
    font-weight: 300;
}

/* Gallery Section */
.gallery-section {
    padding: 120px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 3px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
}

.cake-card {
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.cake-card:hover {
    opacity: 0.7;
}

.cake-image {
    width: 100%;
    aspect-ratio: 1;
    background: #f5f5f5;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: #ccc;
}

.cake-info {
    text-align: center;
}

.cake-info h3 {
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.cake-info p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.8;
    font-weight: 300;
}

.cake-meta {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.price {
    font-size: 1.2rem;
    font-weight: 300;
    color: #1a1a1a;
    letter-spacing: 1px;
}

.serves {
    font-size: 0.85rem;
    color: #999;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* Values Section */
.values {
    padding: 100px 0;
    background: #fafafa;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

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

.value-number {
    display: block;
    font-size: 0.75rem;
    color: #ccc;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.value-item h4 {
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.value-item p {
    font-size: 0.9rem;
    color: #666;
    font-weight: 300;
    line-height: 1.8;
}

/* Contact Section */
.contact {
    padding: 120px 0;
}

.contact-content {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.contact h3 {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 50px;
    letter-spacing: 2px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-info p {
    font-size: 0.95rem;
    color: #666;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* Detail Page */
.back-link {
    display: inline-block;
    margin: 60px 0 40px;
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

.back-link:hover {
    color: #1a1a1a;
}

.cake-detail {
    padding-bottom: 100px;
}

.detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-top: 40px;
}

.detail-image {
    width: 100%;
    aspect-ratio: 1;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    color: #ccc;
}

.detail-content h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 30px;
    letter-spacing: 2px;
    line-height: 1.3;
}

.detail-content .price {
    font-size: 1.8rem;
    margin-bottom: 40px;
    display: block;
}

.detail-content .description {
    font-size: 1rem;
    line-height: 2;
    color: #666;
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e0e0e0;
    font-weight: 300;
}

.detail-section {
    margin-bottom: 40px;
}

.detail-section h3 {
    font-size: 0.75rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: #999;
}

.detail-section ul {
    list-style: none;
}

.detail-section li {
    padding: 8px 0;
    color: #666;
    font-size: 0.95rem;
    font-weight: 300;
}

.contact-cta {
    background: #fafafa;
    padding: 50px;
    text-align: center;
    margin-top: 60px;
}

.contact-cta h3 {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.contact-cta p {
    font-size: 0.95rem;
    color: #666;
    font-weight: 300;
}

/* Footer */
footer {
    padding: 60px 0;
    border-top: 1px solid #e0e0e0;
    text-align: center;
}

footer p {
    font-size: 0.8rem;
    color: #999;
    font-weight: 300;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 80px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .detail-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .container, .container-narrow {
        padding: 0 30px;
    }
    
    .hero {
        padding: 80px 0;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .brand-main {
        font-size: 1.2rem;
        letter-spacing: 4px;
    }
    
    .gallery-section {
        padding: 80px 0;
    }
    
    .section-header {
        margin-bottom: 50px;
    }
    
    .design-switcher {
        position: static;
        justify-content: center;
        padding: 20px;
        border-bottom: 1px solid #e0e0e0;
    }
}


/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 60px;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 1px;
}

.stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #999;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: #e0e0e0;
}

/* Featured Image Section */
.featured-image {
    padding: 0;
    margin: 80px 0;
}

.featured-placeholder {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    aspect-ratio: 16/9;
    background: #fafafa;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.featured-icon {
    font-size: 5rem;
    opacity: 0.3;
}

.featured-placeholder p {
    font-size: 0.85rem;
    color: #ccc;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Testimonial Section */
.testimonial {
    padding: 100px 0;
    background: #fafafa;
}

.testimonial-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.quote-large {
    font-size: 6rem;
    color: #e0e0e0;
    line-height: 1;
    font-family: 'Georgia', serif;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1.3rem;
    line-height: 2;
    color: #666;
    font-weight: 300;
    margin-bottom: 40px;
}

.testimonial-author {
    font-size: 0.9rem;
    color: #999;
    letter-spacing: 1px;
    font-weight: 300;
}

/* Responsive Updates */
@media (max-width: 768px) {
    .hero-stats {
        gap: 20px;
    }
    
    .stat-value {
        font-size: 2rem;
    }
    
    .stat-divider {
        height: 30px;
    }
    
    .featured-placeholder {
        aspect-ratio: 4/3;
    }
    
    .featured-icon {
        font-size: 3rem;
    }
    
    .quote-large {
        font-size: 4rem;
    }
    
    .testimonial-text {
        font-size: 1.1rem;
    }
}
