/* Auxiliary pages styles */
body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--soft-cream);
}

:root {
    --primary-brown: #8B4513;
    --secondary-brown: #A0522D;
    --warm-beige: #F5F5DC;
    --clay-terracotta: #CD853F;
    --deep-earth: #654321;
    --soft-cream: #FFF8DC;
    --muted-gold: #B8860B;
    --text-dark: #3C2415;
    --text-medium: #5D4037;
    --text-light: #8D6E63;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Noto Serif JP', serif;
    font-weight: 500;
    line-height: 1.2;
}

/* Header */
.header {
    background: linear-gradient(135deg, var(--warm-beige) 0%, var(--soft-cream) 100%);
    padding: 40px 0;
    border-bottom: 1px solid rgba(139, 69, 19, 0.1);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
}

.logo {
    flex-shrink: 0;
}

.brand-text {
    text-align: left;
}

.brand-name {
    font-size: 2rem;
    color: var(--primary-brown);
    margin-bottom: 8px;
}

.brand-subtitle {
    font-size: 1rem;
    color: var(--text-medium);
    font-weight: 300;
}

.home-link {
    text-decoration: none;
    color: inherit;
}

/* Main content */
.main-content {
    padding: 80px 0;
    background-color: white;
    min-height: 60vh;
}

.page-title {
    font-size: 2.2rem;
    color: var(--deep-earth);
    margin-bottom: 40px;
    text-align: center;
}

.content-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background: var(--soft-cream);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(139, 69, 19, 0.1);
    margin-bottom: 40px;
}

.content-section h3 {
    font-size: 1.5rem;
    color: var(--primary-brown);
    margin-bottom: 20px;
}

.content-section p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 20px;
}

.empty-content {
    text-align: center;
    color: var(--text-light);
    font-style: italic;
    padding: 60px;
}

/* Footer */
.footer {
    background-color: var(--deep-earth);
    color: white;
    padding: 60px 0 20px;
}

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

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-brand-name {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--warm-beige);
}

.footer-description {
    color: var(--winter-gray);
    line-height: 1.6;
    font-size: 0.9rem;
}

.footer-nav h4,
.footer-legal h4,
.footer-contact h4 {
    color: var(--warm-beige);
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 500;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--warm-beige);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

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

.footer-contact-info p {
    color: var(--winter-gray);
    font-size: 0.9rem;
    margin: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(245, 245, 220, 0.2);
    padding-top: 20px;
    text-align: center;
}

.copyright {
    font-size: 0.9rem;
    color: var(--winter-gray);
    margin: 0;
}

/* About page specific styles */
.content-with-image {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
}

.content-with-image.reverse {
    grid-template-columns: 1fr 2fr;
}

.content-with-image.reverse .text-content {
    order: 2;
}

.content-with-image.reverse .image-placeholder {
    order: 1;
}

.mission-illustration {
    width: 100%;
    height: 200px;
    border-radius: 8px;
}

.artisan-illustration {
    width: 100%;
    height: 200px;
    border-radius: 8px;
}

.quality-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.feature-item {
    text-align: center;
    padding: 20px;
}

.feature-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.feature-item h4 {
    font-size: 1.2rem;
    color: var(--primary-brown);
    margin-bottom: 15px;
}

.feature-item p {
    color: var(--text-medium);
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .brand-name {
        font-size: 1.5rem;
    }
    
    .brand-subtitle {
        font-size: 0.9rem;
    }
    
    .logo-container {
        flex-direction: column;
        text-align: center;
    }
    
    .brand-text {
        text-align: center;
    }
    
    .page-title {
        font-size: 1.8rem;
    }
    
    .main-content {
        padding: 50px 0;
    }
    
    .content-section {
        padding: 30px 20px;
        margin-bottom: 30px;
    }
    
    .footer-links {
        gap: 12px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-brand {
        max-width: none;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .content-with-image,
    .content-with-image.reverse {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .content-with-image.reverse .text-content,
    .content-with-image.reverse .image-placeholder {
        order: unset;
    }
    
    .quality-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .brand-name {
        font-size: 1.3rem;
    }
}