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

body {
    font-family: 'Source Sans Pro', sans-serif;
    line-height: 1.6;
    color: #2C2C2C;
    background-color: #F8F6F0;
    font-size: 16px;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Crimson Text', serif;
    margin-bottom: 1rem;
    color: #2C2C2C;
}

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 600;
}

h2 {
    font-size: 2.2rem;
    line-height: 1.2;
    font-weight: 600;
}

h3 {
    font-size: 1.8rem;
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
}

h4 {
    font-size: 1.3rem;
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    color: #4A4A4A;
    line-height: 1.6;
}

a {
    color: #D4AF37;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Header */
.header {
    background-color: #F8F6F0;
    padding: 2rem 0;
    border-bottom: 1px solid #E8E6E0;
}

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

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

.logo {
    flex-shrink: 0;
}

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

.brand-name {
    font-size: 2rem;
    margin-bottom: 0.25rem;
    color: #2C2C2C;
}

.brand-tagline {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    font-style: italic;
}

/* Hero Section */
.hero {
    padding: 4rem 0;
    text-align: center;
}

.hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2C2C2C;
}

.hero-content p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 3rem;
    color: #4A4A4A;
}

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

/* Image Placeholders */
.image-placeholder {
    background-color: #EFEDE7;
    border: 2px dashed #D4AF37;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    color: #8A8A8A;
    font-size: 0.9rem;
    text-align: center;
}

.placeholder-icon {
    margin-bottom: 1rem;
    opacity: 0.6;
}

/* Sections */
section {
    padding: 4rem 0;
    text-align: center;
}

.about-intro {
    background-color: #F0EEE8;
}

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

.about-content h3 {
    margin-bottom: 2rem;
}

.about-content > p {
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

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

.philosophy-item {
    padding: 2rem 1rem;
}

.philosophy-icon {
    margin-bottom: 1rem;
}

.philosophy-item h4 {
    margin-bottom: 0.5rem;
    color: #2C2C2C;
}

.philosophy-item p {
    font-size: 0.95rem;
    color: #666;
}

/* Products Section */
.products {
    background-color: #F8F6F0;
}

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

.product-card {
    background-color: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.product-image .image-placeholder {
    min-height: 250px;
    border-radius: 0;
    border: none;
    background-color: #F0EEE8;
}

.product-info {
    padding: 1.5rem;
}

.product-info h4 {
    color: #2C2C2C;
    margin-bottom: 0.75rem;
}

.product-info p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1rem;
}

.product-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: #D4AF37;
    margin-bottom: 1.5rem;
}

.product-button {
    display: inline-block;
    background-color: #D4AF37;
    color: #FFFFFF;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.product-button:hover {
    background-color: #B8941F;
    color: #FFFFFF;
    text-decoration: none;
}

/* Craftsmanship Section */
.craftsmanship {
    background-color: #F0EEE8;
}

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

.craftsmanship-text p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.craftsmanship-list {
    list-style: none;
    padding: 0;
}

.craftsmanship-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #4A4A4A;
}

.craftsmanship-list li::before {
    content: "•";
    color: #D4AF37;
    font-size: 1.2rem;
    position: absolute;
    left: 0;
}

.craftsmanship-image .image-placeholder {
    min-height: 350px;
}

/* Materials Section */
.materials {
    background-color: #F8F6F0;
}

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

.materials-content > p {
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.materials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.material-item {
    padding: 2rem 1rem;
    background-color: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.material-item h4 {
    color: #2C2C2C;
    margin-bottom: 0.75rem;
}

.material-item p {
    color: #666;
    font-size: 0.95rem;
}

/* Services Section */
.services {
    background-color: #F0EEE8;
}

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

.service-card {
    padding: 2rem 1.5rem;
    background-color: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-2px);
}

.service-icon {
    margin-bottom: 1rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.service-card h4 {
    color: #2C2C2C;
    margin-bottom: 0.75rem;
}

.service-card p {
    color: #666;
    font-size: 0.95rem;
}

/* Testimonials Section */
.testimonials {
    background-color: #F8F6F0;
}

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

.testimonial-card {
    background-color: #FFFFFF;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.testimonial-card p {
    font-style: italic;
    font-size: 1.05rem;
    color: #4A4A4A;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    font-weight: 600;
    color: #D4AF37;
    font-size: 0.9rem;
    text-align: right;
}

/* Why Choose Section */
.why-choose {
    background-color: #F0EEE8;
}

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

.choose-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    text-align: left;
}

.choose-item {
    padding: 1.5rem;
    background-color: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.choose-item h4 {
    color: #2C2C2C;
    margin-bottom: 0.75rem;
}

.choose-item p {
    color: #666;
    font-size: 0.95rem;
}

/* Contact Section */
.contact {
    background-color: #F8F6F0;
    text-align: left;
}

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

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.contact-item h4 {
    color: #2C2C2C;
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: #4A4A4A;
    margin: 0;
}

.contact-item a {
    color: #D4AF37;
    font-weight: 500;
}

.contact-map .map-placeholder {
    min-height: 400px;
    background-color: #EFEDE7;
}

/* Footer */
.footer {
    background-color: #2C2C2C;
    color: #F8F6F0;
    padding: 3rem 0 1rem;
}

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

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.footer-section h4 {
    color: #D4AF37;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section p {
    color: #B8B8B8;
    font-size: 0.9rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-brand {
    font-family: 'Crimson Text', serif;
    font-size: 1.2rem;
    color: #F8F6F0;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #B8B8B8;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #D4AF37;
    text-decoration: none;
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header {
        padding: 1.5rem 0;
    }
    
    .logo-section {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .brand-info {
        text-align: center;
    }
    
    .brand-name {
        font-size: 1.5rem;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    h3 {
        font-size: 1.6rem;
    }
    
    .philosophy-grid,
    .products-grid,
    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .craftsmanship-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .materials-grid,
    .choose-list {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .brand-name {
        font-size: 1.3rem;
    }
    
    h3 {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .product-info,
    .service-card,
    .testimonial-card {
        padding: 1.5rem;
    }
}