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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    line-height: 1.7;
    color: #1a1a1a;
    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: 'Noto Serif JP', serif;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.4rem; }

p {
    margin-bottom: 1rem;
    color: #707070;
}

/* Header */
.header {
    background: rgba(248, 246, 240, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(107, 122, 60, 0.1);
}

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

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

.logo {
    flex-shrink: 0;
}

.brand-name {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: #1a1a1a;
    margin: 0;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8f6f0 0%, #f2f0e8 100%);
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHZpZXdCb3g9IjAgMCA0MCA0MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGRlZnM+CjxwYXR0ZXJuIGlkPSJncmFpbiIgcGF0dGVyblVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgd2lkdGg9IjQwIiBoZWlnaHQ9IjQwIj4KPGNpcmNsZSBjeD0iMjAiIGN5PSIyMCIgcj0iMSIgZmlsbD0icmdiYSgxMDcsIDEyMiwgNjAsIDAuMDUpIi8+Cjwvcg==') repeat;
    opacity: 0.3;
    pointer-events: none;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
}

.hero-text {
    max-width: 700px;
}

.hero-title {
    font-size: 3rem;
    color: #1a1a1a;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #4a4a4a;
    margin-bottom: 0;
}

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

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

/* Image Placeholders */
.image-placeholder {
    background: #e8e6dc;
    border: 2px solid #d0cec4;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7a3c;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 8px;
    position: relative;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(107, 122, 60, 0.1) 0%, transparent 50%);
    border-radius: 6px;
}

.large-placeholder {
    width: 100%;
    height: 400px;
}

.image-placeholder span {
    position: relative;
    z-index: 1;
}

.small-placeholder {
    width: 100%;
    height: 150px;
    margin-bottom: 1rem;
}

/* Philosophy Section */
.philosophy {
    padding: 100px 0;
    background: #f8f6f0;
}

.philosophy-content {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 60px;
    align-items: start;
}

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

.philosophy-icons {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.philosophy-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
}

.philosophy-icon span {
    font-family: 'Noto Serif JP', serif;
    font-weight: 500;
    color: #1a1a1a;
    font-size: 0.95rem;
}

/* Section Titles */
.section-title {
    color: #1a1a1a;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 2px;
    background: #6b7a3c;
}

/* Products Section */
.products {
    padding: 100px 0;
    background: #fff;
}

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

.product-card {
    background: #f8f6f0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.product-info {
    padding: 30px;
}

.product-info h4 {
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.product-price {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.2rem;
    font-weight: 500;
    color: #6b7a3c;
    margin-bottom: 1rem;
}

.product-info p {
    font-size: 0.95rem;
    color: #4a4a4a;
    margin-bottom: 2rem;
}

.product-button {
    background: #6b7a3c;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 0.9rem;
    width: 100%;
}

.product-button:hover {
    background: #5a6632;
}

.product-button-secondary {
    background: #d2691e;
}

.product-button-secondary:hover {
    background: #b85a1a;
}

.product-button-accent {
    background: #8a9c4a;
}

.product-button-accent:hover {
    background: #7a8c3a;
}

.product-button-vintage {
    background: #a0896b;
}

.product-button-vintage:hover {
    background: #90795b;
}

/* Workshops Section */
.workshops {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f6f0 0%, #f2f0e8 100%);
}

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

.workshops-list {
    list-style: none;
    margin: 2rem 0;
}

.workshops-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(107, 122, 60, 0.2);
    color: 707070;
    font-weight: 500;
}

.workshops-list li:last-child {
    border-bottom: none;
}

.workshop-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.cta-button {
    background: #d2691e;
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background: #b85a1a;
}

/* Rental Section */
.rental {
    padding: 100px 0;
    background: #fff;
}

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

.rental-image-main {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.rental-features {
    margin-top: 2rem;
}

.rental-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 1.5rem;
}

.rental-feature svg {
    margin-top: 2px;
    flex-shrink: 0;
}

.rental-feature span {
    color: 707070;
    font-weight: 500;
}

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

.corporate-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: start;
}

.corporate-services {
    margin-top: 2rem;
    display: grid;
    gap: 2rem;
}

.service-item {
    padding: 20px 0;
    border-bottom: 1px solid rgba(107, 122, 60, 0.2);
}

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

.service-item h4 {
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.service-item p {
    color: #4a4a4a;
    font-size: 0.95rem;
    margin-bottom: 0;
}

.corporate-image-main {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Subscription Section */
.subscription {
    padding: 100px 0;
    background: #fff;
}

.subscription-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
    font-size: 1.05rem;
    color: #4a4a4a;
}

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

.plan-card {
    background: #f8f6f0;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.plan-card h4 {
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.plan-card p {
    color: #4a4a4a;
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.subscription-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    margin-top: 1rem;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f6f0 0%, #f2f0e8 100%);
}

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

.centered-section .hero-content,
.centered-section .philosophy-content,
.centered-section .workshops-content,
.centered-section .rental-content,
.centered-section .corporate-content {
    text-align: left;
}

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

.centered-section .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

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

.feature-card {
    text-align: center;
    padding: 40px 20px;
}

.feature-icon {
    margin-bottom: 2rem;
}

.feature-card h4 {
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #4a4a4a;
    font-size: 0.95rem;
}

/* Contacts Section */
.contacts {
    padding: 100px 0;
    background: #fff;
}

.contacts-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

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

.contact-item h4 {
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: 707070;
    font-weight: 500;
    margin-bottom: 0;
}

/* Contact Form */
.contact-form {
    background: #f8f6f0;
    padding: 40px;
    border-radius: 12px;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    color: #1a1a1a;
    font-weight: 500;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0ddd2;
    border-radius: 8px;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.95rem;
    background: #fff;
    color: #1a1a1a;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #6b7a3c;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-button {
    background: #6b7a3c;
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.submit-button:hover {
    background: #5a6632;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #f8f6f0;
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .logo-container {
    margin-bottom: 1.5rem;
}

.footer-brand .logo-container .logo circle,
.footer-brand .logo-container .logo path {
    stroke: #6b7a3c;
}

.footer-brand .logo-container .logo circle:last-child {
    fill: #6b7a3c;
}

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

.footer-description {
    color: #b8b8b8;
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 400px;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-nav-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

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

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: #b8b8b8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #6b7a3c;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #888;
    font-size: 0.85rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content {
        gap: 30px;
    }
    
    .hero-image-main {
        max-width: 100%;
        height: 250px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-content,
    .philosophy-content,
    .workshops-content,
    .rental-content,
    .corporate-content,
    .contacts-content,
    .footer-nav-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        gap: 30px;
    }
    
    .features-grid,
    .products-grid,
    .subscription-plans {
        grid-template-columns: 1fr;
    }
    
    .philosophy-icons {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    section {
        padding: 60px 0 !important;
    }
}

@media (max-width: 480px) {
    .hero-image-main {
        height: 200px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .plan-card {
        padding: 30px 20px;
    }
    
    .large-placeholder {
        height: 250px;
    }
    
    .image-placeholder {
        height: 200px !important;
    }
    
    .footer-nav-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}