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

body {
    font-family: 'Times New Roman', 'MS Mincho', serif;
    line-height: 1.6;
    color: #2C2C2C;
    background-color: #F8F7F4;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(74, 93, 35, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(122, 132, 80, 0.02) 0%, transparent 50%);
}

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

/* Centered sections */
.centered-section {
    text-align: center;
}

.centered-section .container > * {
    margin-left: auto;
    margin-right: auto;
}

.centered-section h2 {
    text-align: center;
}

.centered-section p {
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Typography */
h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 300;
    color: #4A5D23;
}

h2 {
    font-size: 2rem;
    line-height: 1.2;
    font-weight: 300;
    color: #4A5D23;
    margin-bottom: 2rem;
    text-align: center;
}

h3 {
    font-size: 1.3rem;
    line-height: 1.2;
    font-weight: 400;
    color: #2C2C2C;
    margin-bottom: 1rem;
}

p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #444;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-product {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.95rem;
    text-align: center;
    transition: all 0.2s ease;
    border: 2px solid transparent;
    font-family: inherit;
}

.btn-primary {
    background-color: #4A5D23;
    color: white;
    border-color: #4A5D23;
}

.btn-primary:hover {
    background-color: #3A4D13;
    border-color: #3A4D13;
}

.btn-secondary {
    background-color: transparent;
    color: #4A5D23;
    border-color: #4A5D23;
}

.btn-secondary:hover {
    background-color: #4A5D23;
    color: white;
}

.btn-product {
    background-color: #7A8450;
    color: white;
    border-color: #7A8450;
    font-size: 0.9rem;
    padding: 10px 20px;
}

.btn-product:hover {
    background-color: #6A7440;
    border-color: #6A7440;
}

/* Placeholder Images */
.placeholder-image {
    background-color: #E8E8E8;
    background-image: 
        linear-gradient(45deg, #DDD 25%, transparent 25%, transparent 75%, #DDD 75%, #DDD),
        linear-gradient(45deg, #DDD 25%, transparent 25%, transparent 75%, #DDD 75%, #DDD);
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    border-radius: 4px;
    border: 1px solid #DDD;
}

/* Image Styles */
.about-image,
.guide-image,
.tearoom-image,
.product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(74, 93, 35, 0.1);
}

.guide-image,
.tearoom-image {
    height: 250px;
}

.product-image {
    margin-bottom: 20px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #F8F7F4 0%, #F2F1ED 100%);
    padding: 80px 0;
    text-align: center;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(74, 93, 35, 0.05) 0%, transparent 60%),
        radial-gradient(circle at 80% 70%, rgba(122, 132, 80, 0.03) 0%, transparent 60%);
}

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

.logo-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.logo {
    flex-shrink: 0;
}

.brand-name {
    margin: 0;
    font-size: 2.8rem;
    font-weight: 300;
    color: #4A5D23;
    text-align: center;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: white;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-text {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.about-text .placeholder-image {
    height: 200px;
}

.about-text .about-image {
    height: 200px;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: linear-gradient(135deg, #F8F7F4 0%, #F2F1ED 100%);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.service-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(74, 93, 35, 0.08);
}

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

/* Matcha Guide Section */
.matcha-guide {
    padding: 80px 0;
    background-color: white;
}

.guide-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.guide-content .placeholder-image {
    height: 250px;
}

.guide-content .guide-image {
    height: 250px;
}

/* Corporate Section */
.corporate {
    padding: 80px 0;
    background: linear-gradient(135deg, #F8F7F4 0%, #F2F1ED 100%);
}

.corporate-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.feature {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(74, 93, 35, 0.08);
}

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

/* Products Section */
.products {
    padding: 80px 0;
    background-color: white;
}

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

.product-item {
    background: #F9F8F6;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(74, 93, 35, 0.05);
}

.product-item .placeholder-image {
    height: 200px;
    margin-bottom: 20px;
}

.price {
    font-size: 1.2rem;
    font-weight: 600;
    color: #4A5D23;
    margin-bottom: 20px;
}

/* Tearoom Section */
.tearoom {
    padding: 80px 0;
    background: linear-gradient(135deg, #F8F7F4 0%, #F2F1ED 100%);
}

.tearoom-content {
    max-width: 800px;
    margin: 0 auto;
}

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

.tearoom-info .placeholder-image {
    height: 250px;
}

.tearoom-info .tearoom-image {
    height: 250px;
}

/* Why Choose Section */
.why-choose {
    padding: 80px 0;
    background-color: white;
}

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

.reason {
    text-align: center;
    padding: 30px 20px;
}

/* Process Section */
.process {
    padding: 80px 0;
    background: linear-gradient(135deg, #F8F7F4 0%, #F2F1ED 100%);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.step {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(74, 93, 35, 0.05);
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #4A5D23;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 auto 20px;
}

/* Contacts Section */
.contacts {
    padding: 80px 0;
    background-color: white;
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background: #F9F8F6;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(74, 93, 35, 0.05);
}

.contact-icon {
    flex-shrink: 0;
    margin-top: 5px;
}

.contact-item h3 {
    margin-bottom: 10px;
    color: #4A5D23;
}

.contact-item a {
    color: #4A5D23;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background-color: #2C2C2C;
    color: #E8E8E8;
    padding: 60px 0 30px;
}

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

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

.footer-brand {
    font-size: 1.3rem;
    color: #E8E8E8;
}

.footer-nav {
    justify-self: end;
}

.footer-nav ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 30px;
    list-style: none;
}

.footer-nav a {
    color: #E8E8E8;
    text-decoration: none;
    font-size: 0.95rem;
}

.footer-nav a:hover {
    color: #7A8450;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 20px;
    text-align: center;
    color: #AAA;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .logo-section {
        flex-direction: column;
        gap: 15px;
    }
    
    .brand-name {
        font-size: 2.2rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .about-text,
    .guide-content,
    .tearoom-info {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-grid,
    .product-grid,
    .corporate-features,
    .reasons-grid,
    .process-steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
    }
    
    .footer-nav {
        justify-self: center;
    }
    
    .footer-nav ul {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 10px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.7rem;
    }
}

@media (max-width: 480px) {
    .brand-name {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .btn-primary, .btn-secondary {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}