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

body {
    font-family: 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', 'Meiryo', sans-serif;
    line-height: 1.6;
    color: #2C3E2D;
    background-color: #FEFEFE;
}

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

/* Header */
.header {
    background-color: #F5F5DC;
    padding: 20px 0;
    border-bottom: 2px solid #8B5A3C;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    flex-shrink: 0;
}

.brand-name {
    font-size: 32px;
    font-weight: 600;
    color: #2C3E2D;
    letter-spacing: 2px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #F5F5DC 0%, #E8E8DC 100%);
    padding: 80px 0;
    text-align: center;
}

.hero-title {
    font-size: 48px;
    color: #2C3E2D;
    margin-bottom: 20px;
    font-weight: 300;
    letter-spacing: 3px;
}

.hero-subtitle {
    font-size: 20px;
    color: #8B5A3C;
    margin-bottom: 40px;
    line-height: 1.5;
}

.hero-image-placeholder {
    background-color: #D3D3D3;
    height: 400px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 16px;
    margin: 0 auto;
    max-width: 800px;
}

/* Section Styles */
.section-title {
    font-size: 36px;
    color: #2C3E2D;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 300;
    letter-spacing: 2px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background-color: #8B5A3C;
    margin: 20px auto;
}

/* About Zen Section */
.about-zen {
    padding: 80px 0;
    background-color: #FEFEFE;
    text-align: center;
}

.zen-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.zen-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #2C3E2D;
}

.zen-image-placeholder {
    background-color: #D3D3D3;
    height: 300px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 14px;
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: #F9F9F7;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.service-item {
    background-color: #FEFEFE;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(44, 62, 45, 0.1);
    border: 1px solid #E0E0E0;
}

.service-icon {
    margin-bottom: 20px;
}

.service-item h3 {
    font-size: 24px;
    color: #2C3E2D;
    margin-bottom: 15px;
    font-weight: 500;
}

.service-item p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

/* Products Section */
.products {
    padding: 80px 0;
    background-color: #FEFEFE;
    text-align: center;
}

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

.product-item {
    background-color: #F9F9F7;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(44, 62, 45, 0.1);
    border: 1px solid #E0E0E0;
}

.product-image-placeholder {
    background-color: #D3D3D3;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 14px;
}

.product-item h3 {
    font-size: 22px;
    color: #2C3E2D;
    padding: 20px 20px 10px;
    font-weight: 500;
}

.product-item p {
    font-size: 16px;
    color: #666;
    padding: 0 20px 20px;
    line-height: 1.6;
}

.product-price {
    font-size: 24px;
    font-weight: 600;
    color: #8B5A3C;
    padding: 0 20px 15px;
    text-align: center;
}

.product-buttons {
    padding: 0 20px 20px;
    display: flex;
    gap: 10px;
    flex-direction: column;
}

.btn {
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    text-align: center;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-phone {
    background-color: #8B5A3C;
    color: white;
}

.btn-phone:hover {
    background-color: #A0693F;
}

.btn-email {
    background-color: transparent;
    color: #8B5A3C;
    border: 2px solid #8B5A3C;
}

.btn-email:hover {
    background-color: #8B5A3C;
    color: white;
}

/* Hero Section Improvements */
.hero {
    background: linear-gradient(135deg, #F5F5DC 0%, #E8E8DC 100%);
    padding: 80px 0;
    text-align: center;
}

.hero-content {
    max-width: 1000px;
    margin: 0 auto;
}

.hero-title {
    font-size: 48px;
    color: #2C3E2D;
    margin-bottom: 20px;
    font-weight: 300;
    letter-spacing: 3px;
}

.hero-subtitle {
    font-size: 20px;
    color: #8B5A3C;
    margin-bottom: 40px;
    line-height: 1.5;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-image-placeholder {
    background-color: #D3D3D3;
    height: 400px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 16px;
    margin: 0 auto;
    max-width: 800px;
    overflow: hidden;
}

/* Tea Ceremony Section */
.tea-ceremony {
    padding: 80px 0;
    background-color: #F9F9F7;
    text-align: center;
}

.tea-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.tea-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #2C3E2D;
}

.tea-text ul {
    list-style: none;
    padding-left: 0;
}

.tea-text li {
    font-size: 16px;
    color: #8B5A3C;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.tea-text li::before {
    content: '•';
    color: #8B5A3C;
    position: absolute;
    left: 0;
}

.tea-image-placeholder {
    background-color: #D3D3D3;
    height: 300px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 14px;
}

/* Meditation Section */
.meditation {
    padding: 80px 0;
    background-color: #FEFEFE;
    text-align: center;
}

.meditation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.meditation-item {
    background-color: #F9F9F7;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(44, 62, 45, 0.1);
    border: 1px solid #E0E0E0;
}

.meditation-item h3 {
    font-size: 24px;
    color: #2C3E2D;
    margin-bottom: 15px;
    font-weight: 500;
}

.meditation-item p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.meditation-image-placeholder {
    background-color: #D3D3D3;
    height: 150px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 14px;
}

/* Culture Section */
.culture {
    padding: 80px 0;
    background-color: #F9F9F7;
    text-align: center;
}

.culture-content {
}

.culture-content > p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
    color: #2C3E2D;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.culture-item {
    background-color: #FEFEFE;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(44, 62, 45, 0.1);
}

.culture-item h4 {
    font-size: 20px;
    color: #8B5A3C;
    margin-bottom: 10px;
    font-weight: 500;
}

.culture-item p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.culture-image-placeholder {
    background-color: #D3D3D3;
    height: 250px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 14px;
    margin: 0 auto;
    max-width: 800px;
}

/* Philosophy Section */
.philosophy {
    padding: 80px 0;
    background-color: #FEFEFE;
}

.philosophy .container {
    text-align: center;
}

.zen-quote {
    font-size: 28px;
    color: #8B5A3C;
    font-style: italic;
    margin: 0 auto 40px;
    max-width: 600px;
    line-height: 1.5;
    border-left: 4px solid #8B5A3C;
    padding-left: 30px;
    text-align: left;
}

.zen-quote cite {
    display: block;
    font-size: 16px;
    margin-top: 10px;
    color: #666;
    font-style: normal;
}

.philosophy-content > p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
    color: #2C3E2D;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.philosophy-image-placeholder {
    background-color: #D3D3D3;
    height: 300px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 14px;
    margin: 0 auto;
    max-width: 600px;
}

/* Contacts Section */
.contacts {
    padding: 80px 0;
    background-color: #F9F9F7;
    text-align: center;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background-color: #FEFEFE;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(44, 62, 45, 0.1);
}

.contact-icon {
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 20px;
    color: #2C3E2D;
    margin-bottom: 10px;
    font-weight: 500;
}

.contact-details a,
.contact-details p {
    font-size: 16px;
    color: #666;
    text-decoration: none;
    line-height: 1.6;
}

.contact-details a:hover {
    color: #8B5A3C;
}

/* Footer */
.footer {
    background-color: #2C3E2D;
    color: #F5F5DC;
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 40px;
    align-items: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-self: start;
}

.footer-brand {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
}

.footer-nav {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-nav a {
    color: #F5F5DC;
    text-decoration: none;
    font-size: 14px;
    padding: 5px 0;
    border-bottom: 1px solid transparent;
    transition: border-bottom-color 0.3s ease;
}

.footer-nav a:hover {
    border-bottom-color: #8B5A3C;
}

.footer-copyright {
    justify-self: end;
    text-align: right;
}

.footer-copyright p {
    font-size: 14px;
    color: #B0B0B0;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 40px 0;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
        margin-bottom: 30px;
    }
    
    .hero-image-placeholder {
        height: 250px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .zen-content,
    .tea-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .tea-content {
        grid-template-rows: auto auto;
    }
    
    .tea-content .tea-image-placeholder {
        order: -1;
    }
    
    .services-grid,
    .products-grid,
    .meditation-grid {
        grid-template-columns: 1fr;
    }
    
    .culture-features {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }
    
    .footer-logo {
        justify-self: center;
    }
    
    .footer-copyright {
        justify-self: center;
        text-align: center;
    }
    
    .footer-nav {
        flex-direction: row;
        gap: 15px;
        justify-content: center;
    }
    
    .product-buttons {
        flex-direction: column;
    }
    
    .brand-name {
        font-size: 24px;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 30px 0;
    }
    
    .hero-title {
        font-size: 28px;
        letter-spacing: 1px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-image-placeholder {
        height: 200px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .footer-nav {
        flex-direction: column;
        gap: 10px;
    }
    
    .zen-quote {
        font-size: 22px;
        padding-left: 20px;
    }
}