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

body {
    font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Yu Gothic UI', 'Noto Color Emoji', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #FAFAFA;
}

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

/* Color Variables */
:root {
    --cedar-green: #2D5E3E;
    --cedar-green-light: #4A7C59;
    --cedar-green-lighter: #5B8A6B;
    --charcoal: #3A3A3A;
    --sand: #F5F2E8;
    --sand-dark: #E8E2D5;
    --ember-orange: #E87722;
    --neutral-gray: #8B9A8B;
    --light-gray: #F8F9FA;
}

/* Header */
.header {
    background-color: var(--sand);
    padding: 1rem 0;
    border-bottom: 1px solid var(--sand-dark);
}

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

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

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

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--cedar-green);
    letter-spacing: -0.02em;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--cedar-green) 0%, var(--cedar-green-light) 100%);
    color: white;
    padding: 4rem 0;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

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

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

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

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-button {
    background-color: var(--ember-orange);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 6px;
    cursor: pointer;
    font-family: inherit;
}

.cta-button:hover {
    background-color: #D16B1C;
}

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

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

.about-text h3 {
    font-size: 1.75rem;
    color: var(--cedar-green);
    margin-bottom: 1rem;
    font-weight: 700;
}

.about-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--charcoal);
}

.about-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Products Section */
.products {
    padding: 4rem 0;
    background-color: var(--light-gray);
}

.section-title {
    text-align: center;
    font-size: 2rem;
    color: var(--cedar-green);
    margin-bottom: 3rem;
    font-weight: 700;
}

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

.product-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.product-image {
    margin-bottom: 1rem;
}

.product-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.product-card h4 {
    font-size: 1.125rem;
    color: var(--cedar-green);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.product-card p {
    font-size: 0.875rem;
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.product-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--ember-orange);
    margin-bottom: 1rem;
}

.product-button {
    background-color: var(--cedar-green);
    color: white;
    border: none;
    padding: 0.6rem 1.5rem;
    font-size: 0.875rem;
    border-radius: 6px;
    cursor: pointer;
    font-family: inherit;
    width: 100%;
}

.product-button:hover {
    background-color: var(--cedar-green-light);
}

/* Services Section */
.services {
    padding: 4rem 0;
    background-color: white;
}

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

.service-card {
    text-align: center;
    padding: 2rem 1rem;
}

.service-icon {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

.service-card h4 {
    font-size: 1.25rem;
    color: var(--cedar-green);
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card p {
    color: var(--charcoal);
    line-height: 1.6;
}

/* Trail Knowledge Section */
.trail-knowledge {
    padding: 4rem 0;
    background-color: var(--sand);
}

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

.knowledge-text h3 {
    font-size: 1.75rem;
    color: var(--cedar-green);
    margin-bottom: 1rem;
    font-weight: 700;
}

.knowledge-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
}

.knowledge-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.knowledge-list {
    list-style: none;
}

.knowledge-list li {
    padding: 0.5rem 0;
    padding-left: 1rem;
    position: relative;
    color: var(--charcoal);
}

.knowledge-list li::before {
    content: "•";
    color: var(--ember-orange);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Buyback Section */
.buyback {
    padding: 4rem 0;
    background-color: white;
}

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

.buyback-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--charcoal);
}

.seasonal-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.buyback-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.feature-number {
    background-color: var(--ember-orange);
    color: white;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.feature-text {
    font-weight: 500;
    color: var(--charcoal);
}

/* Partners Section */
.partners {
    padding: 4rem 0;
    background-color: var(--light-gray);
}

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

.partner-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.partner-card h4 {
    font-size: 1.25rem;
    color: var(--cedar-green);
    margin-bottom: 1rem;
    font-weight: 600;
}

.partner-card p {
    color: var(--charcoal);
    line-height: 1.6;
}

/* Seasonal Section */
.seasonal {
    padding: 4rem 0;
    background-color: white;
}

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

.seasonal-text h4 {
    font-size: 1.5rem;
    color: var(--cedar-green);
    margin-bottom: 1rem;
    font-weight: 700;
}

.seasonal-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--charcoal);
}

/* Contact Section */
.contact {
    padding: 4rem 0;
    background-color: var(--sand);
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: white;
    padding: 2rem;
    border-radius: 12px;
}

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

.contact-details h4 {
    font-size: 1.125rem;
    color: var(--cedar-green);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-details p {
    color: var(--charcoal);
    line-height: 1.6;
}

.contact-details a {
    color: var(--cedar-green);
    text-decoration: none;
}

.contact-details a:hover {
    color: var(--ember-orange);
}

/* Footer */
.footer {
    background-color: var(--charcoal);
    color: white;
    padding: 3rem 0 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-logo {
    width: 32px;
    height: 32px;
}

.footer-brand-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;

.footer-nav-group {
.footer-nav-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-nav a {
    color: var(--neutral-gray);
    text-decoration: none;
    font-size: 0.875rem;
}

.footer-nav a:hover {
    color: white;
}

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

.footer-bottom p {
    color: var(--neutral-gray);
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .about-content,
    .knowledge-content,
    .buyback-content,
    .seasonal-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-nav {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-nav-group {
        align-items: center;
        text-align: center;
    }
    
    .footer-nav-group {
        align-items: center;
    }
    
    .container {
        padding: 0 16px;
    }
}