/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.6;
    color: #4A5568;
    background-color: #F7FAFC;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Noto Serif JP', serif;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; font-weight: 600; }
h2 { font-size: 2.25rem; font-weight: 600; }
h3 { font-size: 2rem; font-weight: 500; }
h4 { font-size: 1.5rem; font-weight: 500; }
h5 { font-size: 1.25rem; font-weight: 500; }
h6 { font-size: 1.125rem; font-weight: 500; }

p {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.5;
}

a {
    color: #E53E3E;
    text-decoration: none;
}

a:hover {
    color: #C53030;
    text-decoration: underline;
}

/* Header */
.header {
    background: rgba(247, 250, 252, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #E2E8F0;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    flex-shrink: 0;
}

.brand-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    color: #4A5568;
}

.brand-subtitle {
    font-size: 0.875rem;
    color: #718096;
    margin: 0;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 300;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #4A5568 0%, #2D3748 100%);
    color: #F7FAFC;
    padding: 4rem 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

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

.hero-title {
    color: #F7FAFC;
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-features {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(247, 250, 252, 0.1);
    padding: 0.75rem 1rem;
    border-radius: 8px;
}

.feature-icon {
    font-size: 1.25rem;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* Image Styles */
.seasonal-img,
.artisan-img,
.care-img,
.workshop-img,
.map-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.product-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
}

.hero-img {
    width: 100%;
    max-width: 500px;
    height: 350px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.seasonal-img,
.artisan-img {
    height: 300px;
}

.care-img,
.workshop-img {
    height: 280px;
}

.map-img {
    height: 250px;
}
/* Product Cards */
.product-card {
    background: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #E2E8F0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.product-price {
    padding: 0 1.5rem;
    font-size: 1.125rem;
    font-weight: 500;
    color: #E53E3E;
    margin-bottom: 1rem;
}

/* Sections */
section {
    padding: 4rem 0;
}

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

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: #2D3748;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #E53E3E;
    margin: 1rem auto;
    border-radius: 2px;
}

/* Introduction */
.intro {
    background: #FFFFFF;
    text-align: center;
}

.intro-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.125rem;
    line-height: 1.8;
}

/* Services */
.services {
    background: #F7FAFC;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #E2E8F0;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h4 {
    color: #2D3748;
    margin-bottom: 1rem;
}

/* Seasonal */
.seasonal {
    background: #FFFFFF;
}

.seasonal-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.seasonal-image-placeholder {
    background: rgba(229, 62, 62, 0.05);
    border: 2px dashed #E53E3E;
    border-radius: 8px;
    padding: 3rem 2rem;
    text-align: center;
}

.seasonal-text {
    font-size: 1.125rem;
    line-height: 1.8;
}

/* Artisan */
.artisan {
    background: #F7FAFC;
}

.artisan-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.artisan-image-placeholder {
    background: rgba(229, 62, 62, 0.05);
    border: 2px dashed #E53E3E;
    border-radius: 8px;
    padding: 3rem 2rem;
    text-align: center;
}

.artisan-text {
    font-size: 1.125rem;
    line-height: 1.8;
}

/* Products */
.products {
    background: #FFFFFF;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.product-card h4 {
    padding: 1rem 1.5rem 0;
    color: #2D3748;
    margin-bottom: 0.5rem;
}

.product-card p {
    padding: 0 1.5rem;
    margin-bottom: 1rem;
    color: #718096;
}

.product-btn {
    width: calc(100% - 3rem);
    margin: 0 1.5rem 1.5rem;
    background: #E53E3E;
    color: #FFFFFF;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    font-family: 'Noto Sans JP', sans-serif;
    transition: background-color 0.2s ease;
}

.product-btn:hover {
    background: #C53030;
}

/* Care */
.care {
    background: #F7FAFC;
}

.care-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.care-text {
    font-size: 1.125rem;
    line-height: 1.8;
}

.care-list {
    margin-top: 1.5rem;
    padding-left: 1.5rem;
}

.care-list li {
    margin-bottom: 0.5rem;
    color: #4A5568;
}

/* Workshop */
.workshop {
    background: #FFFFFF;
}

.workshop-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.workshop-text {
    font-size: 1.125rem;
    line-height: 1.8;
}

.workshop-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.workshop-type {
    background: #F7FAFC;
    padding: 1rem;
    border-radius: 8px;
    border-left: 3px solid #E53E3E;
}

.workshop-type h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #2D3748;
}

.workshop-type p {
    font-size: 0.875rem;
    color: #718096;
    margin: 0;
}

/* Heritage */
.heritage {
    background: #F7FAFC;
}

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

.heritage-text {
    font-size: 1.125rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.heritage-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #E2E8F0;
}

.stat-number {
    font-size: 3rem;
    font-weight: 600;
    color: #E53E3E;
    font-family: 'Noto Serif JP', serif;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #718096;
    font-weight: 500;
}

/* Contact */
.contact {
    background: #FFFFFF;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item h4 {
    color: #2D3748;
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.contact-item p {
    margin-bottom: 0.5rem;
}

.contact-item small {
    color: #718096;
    font-size: 0.875rem;
}

/* Footer */
.footer {
    background: #2D3748;
    color: #F7FAFC;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand {
    flex: 1;
}

.footer-links {
    flex: 1;
}

.footer .brand-name {
    color: #F7FAFC;
}

.footer .brand-subtitle {
    color: #A0AEC0;
}

.footer-nav {
    display: flex;
    gap: 3rem;
    justify-content: flex-end;
}

.footer-nav-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-nav-title {
    color: #F7FAFC;
    font-size: 0.875rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-nav a {
    color: #E2E8F0;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.footer-nav a:hover {
    color: #F7FAFC;
    text-decoration: none;
}

.footer-bottom {
    border-top: 1px solid #4A5568;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #A0AEC0;
    font-size: 0.875rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-features {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .seasonal-content,
    .artisan-content,
    .care-content,
    .workshop-content,
    .contact-content,
    .footer-content {
        grid-template-columns: 1fr;
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-content {
        text-align: center;
    }
    
    .footer-nav {
        justify-content: center;
        gap: 2rem;
    }
    
    .services-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .heritage-stats {
        grid-template-columns: 1fr;
    }
    
    .brand {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.5rem;
    }
    
    .workshop-types {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    section {
        padding: 2rem 0;
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-nav {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .service-card,
    .product-card {
        margin-bottom: 1rem;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
}