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

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2D3748;
    background-color: #FFFEF7;
}

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

/* Header Styles */
.header {
    background-color: #FFFEF7;
    padding: 24px 0;
    border-bottom: 1px solid #E2E8F0;
}

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

.logo-container a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo {
    width: 40px;
    height: 40px;
}

.logo.small {
    width: 32px;
    height: 32px;
}

.brand-name {
    font-size: 28px;
    font-weight: 300;
    color: #2D3748;
    letter-spacing: -0.5px;
}

.brand-name.small {
    font-size: 20px;
}

.japanese-accent {
    color: #E53E3E;
    font-weight: 400;
}

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

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

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

.hero-title {
    font-size: 48px;
    font-weight: 300;
    color: #2D3748;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    color: #4A5568;
    margin-bottom: 0;
    line-height: 1.5;
}

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

.hero-illustration {
    width: 100%;
    max-width: 400px;
    height: auto;
}

/* Section Styles */
.featured-collabs,
.products,
.artist-spotlight,
.limited-drops,
.sustainability,
.membership {
    text-align: center;
}

.section-title {
    font-size: 32px;
    font-weight: 300;
    color: #2D3748;
    margin-bottom: 48px;
    text-align: center;
}

/* Featured Collaborations */
.featured-collabs {
    padding: 80px 0;
    background-color: #FFFEF7;
}

.collab-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.collab-card {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid #E2E8F0;
}

.collab-visual {
    width: 100%;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.collab-visual svg {
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

.collab-info h4 {
    font-size: 20px;
    font-weight: 500;
    color: #2D3748;
    margin-bottom: 8px;
}

.collab-info p {
    color: #4A5568;
    font-size: 14px;
}

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

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

.product-card {
    background: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #E2E8F0;
}

.product-visual {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.product-visual svg {
    width: 100%;
    height: 100%;
}

.product-info {
    padding: 24px;
    text-align: left;
}

.product-info h4 {
    font-size: 18px;
    font-weight: 500;
    color: #2D3748;
    margin-bottom: 8px;
}

.product-price {
    font-size: 20px;
    font-weight: 600;
    color: #4F46E5;
    margin-bottom: 12px;
}

.product-description {
    color: #4A5568;
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.4;
}

.product-btn {
    width: 100%;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
    color: #FFFFFF;
}

.product-btn.phone-btn {
    background-color: #4F46E5;
}

.product-btn.phone-btn:hover {
    background-color: #3B37C7;
}

.product-btn.email-btn {
    background-color: #E53E3E;
}

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

/* Artist Spotlight */
.artist-spotlight {
    padding: 80px 0;
    background-color: #FFFEF7;
}

.spotlight-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

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

.spotlight-text h4 {
    font-size: 24px;
    font-weight: 500;
    color: #2D3748;
    margin-bottom: 20px;
}

.spotlight-text p {
    color: #4A5568;
    margin-bottom: 32px;
    font-size: 16px;
    line-height: 1.6;
}

.artist-stats {
    display: flex;
    gap: 32px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 32px;
    font-weight: 600;
    color: #4F46E5;
}

.stat-label {
    font-size: 14px;
    color: #4A5568;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.spotlight-visual {
    width: 100%;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spotlight-visual svg {
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

/* Limited Drops */
.limited-drops {
    padding: 80px 0;
    background-color: #F7FAFC;
}

.drops-timeline {
    max-width: 600px;
    margin: 0 auto;
}

.drop-item {
    display: flex;
    gap: 32px;
    padding: 32px 0;
    border-bottom: 1px solid #E2E8F0;
    text-align: left;
}

.drop-item:last-child {
    border-bottom: none;
}

.drop-date {
    font-size: 14px;
    color: #4A5568;
    font-weight: 500;
    min-width: 120px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.drop-info h4 {
    font-size: 20px;
    font-weight: 500;
    color: #2D3748;
    margin-bottom: 8px;
}

.drop-info p {
    color: #4A5568;
    margin-bottom: 12px;
}

.drop-status {
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.drop-status.upcoming {
    background-color: #FED7D7;
    color: #C53030;
}

.drop-status.active {
    background-color: #C6F6D5;
    color: #22543D;
}

.drop-status.sold-out {
    background-color: #E2E8F0;
    color: #4A5568;
}

/* Sustainability */
.sustainability {
    padding: 80px 0;
    background-color: #FFFEF7;
}

.sustainability-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

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

.sustainability-text p {
    color: #4A5568;
    margin-bottom: 32px;
    font-size: 16px;
    line-height: 1.6;
}

.sustainability-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-icon {
    font-size: 24px;
}

.feature span {
    font-size: 16px;
    color: #2D3748;
    font-weight: 500;
}

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

.sustainability-visual {
    width: 100%;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sustainability-visual svg {
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

/* Membership */
.membership {
    padding: 80px 0;
    background-color: #F7FAFC;
}

.membership-card {
    max-width: 600px;
    margin: 0 auto;
    background: #FFFFFF;
    padding: 48px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    border: 1px solid #E2E8F0;
}

.membership-card p {
    color: #4A5568;
    margin-bottom: 32px;
    font-size: 16px;
    line-height: 1.6;
}

.membership-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 32px;
}

.benefit {
    padding: 12px 16px;
    background-color: #EBF4FF;
    color: #2B6CB0;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
}

.membership-pricing {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
}

.price {
    font-size: 36px;
    font-weight: 600;
    color: #4F46E5;
}

.period {
    font-size: 16px;
    color: #4A5568;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: #FFFEF7;
}

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

.contact-item {
    text-align: center;
}

.contact-item h4 {
    font-size: 20px;
    font-weight: 500;
    color: #2D3748;
    margin-bottom: 16px;
}

.contact-item p {
    color: #4A5568;
    font-size: 16px;
    line-height: 1.5;
}

/* Footer */
.footer {
    background-color: #2D3748;
    color: #FFFFFF;
    padding: 48px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 48px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.footer-logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.footer-logo .brand-name {
    color: #FFFFFF;
}

.footer-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    justify-self: center;
}

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

.footer-section h4 {
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 8px;
}

.footer-section a {
    color: #A0AEC0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-section a:hover {
    color: #FFFFFF;
}

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

.footer-copyright p {
    color: #A0AEC0;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .spotlight-content,
    .sustainability-content {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    
    .spotlight-text,
    .sustainability-text {
        text-align: center;
    }
    
    .artist-stats {
        justify-content: center;
    }
    
    .membership-benefits {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 32px;
    }
    
    .footer-logo,
    .footer-nav,
    .footer-copyright {
        justify-self: center;
    }
    
    .footer-nav {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .footer-copyright {
        text-align: center;
    }
    
    .drop-item {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .drop-date {
        min-width: auto;
    }
    
    .collab-grid,
    .product-grid {
        grid-template-columns: 1fr;
    }
}