/* LEGRA V2 - PETOKOTO Style Inspired */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.6;
    color: #333333;
    background: #ffffff;
    font-weight: 400;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: #333333;
    letter-spacing: 0.1em;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #666666;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #ff6b47;
}

/* Hero Section - PETOKOTO Style */
.hero {
    background: linear-gradient(135deg, #ff6b47 0%, #ff8c5a 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 80vh;
}

.hero-text {
    color: white;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.hero-description {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.hero-cta {
    margin-top: 2rem;
}

.btn-cta {
    display: inline-block;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: translateY(-2px);
}

.btn-cta.dark {
    background: rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(0, 0, 0, 0.3);
    color: #333333;
}

.btn-cta.dark:hover {
    background: rgba(0, 0, 0, 0.8);
    color: white;
}

.btn-cta.secondary {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.8);
    margin-left: 1rem;
}

.btn-cta.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.hero-image {
    position: relative;
}

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

/* Mission Section */
.mission {
    background: #f5f3f0;
    padding: 8rem 0;
}

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

.section-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.section-content {
    padding-right: 2rem;
}

.section-label {
    font-size: 0.9rem;
    color: #ff6b47;
    font-weight: 500;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.section-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333333;
    line-height: 1.3;
    margin-bottom: 3rem;
}

.section-subheading {
    font-size: 0.9rem;
    color: #ff6b47;
    font-weight: 500;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.strategy-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #333333;
    margin-bottom: 2rem;
}

.section-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #666666;
    margin-bottom: 3rem;
}

.mission-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #ff6b47;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #666666;
    font-weight: 500;
}

.section-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-background {
    position: absolute;
    font-size: 12rem;
    font-weight: 800;
    color: rgba(255, 107, 71, 0.1);
    letter-spacing: 0.2em;
    z-index: 1;
    user-select: none;
}

.section-visual img {
    width: 400px;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 2;
}

/* Service Section */
.service {
    background: white;
    padding: 8rem 0;
}

.service-header {
    text-align: center;
    margin-bottom: 6rem;
}

.service-title {
    font-size: 4rem;
    font-weight: 700;
    color: #ff6b47;
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
}

.service-subtitle {
    font-size: 1rem;
    color: #ff6b47;
    font-weight: 500;
    letter-spacing: 0.1em;
}

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

.service-main {
    position: relative;
}

.award-badge {
    position: absolute;
    top: 2rem;
    left: 2rem;
    background: white;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 3;
}

.award-text {
    font-size: 0.7rem;
    font-weight: 600;
    line-height: 1.2;
    color: #333333;
}

.service-main img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.service-info {
    padding: 2rem 0;
    position: relative;
}

.service-name {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff6b47;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.service-concept {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333333;
    line-height: 1.4;
    margin-bottom: 2rem;
}

.service-description {
    font-size: 1rem;
    line-height: 1.8;
    color: #666666;
    margin-bottom: 2rem;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-tag {
    background: #ff6b47;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.food-circle {
    position: absolute;
    bottom: -3rem;
    right: -2rem;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.food-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Company Section */
.company {
    background: #f0f0f0;
    padding: 6rem 0;
}

.company-header {
    text-align: center;
    margin-bottom: 4rem;
}

.company-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ff6b47;
    letter-spacing: 0.2em;
    margin-bottom: 0.5rem;
}

.company-subtitle {
    font-size: 1rem;
    color: #ff6b47;
    font-weight: 500;
    letter-spacing: 0.1em;
}

.company-info {
    max-width: 800px;
    margin: 0 auto;
}

.company-row {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 3rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.company-row:last-child {
    border-bottom: none;
}

.info-label {
    font-size: 1rem;
    color: #333333;
    font-weight: 500;
}

.info-value {
    font-size: 1rem;
    color: #333333;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    background: white;
    padding: 6rem 0;
}

.contact-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    gap: 4rem;
}

.contact-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ff6b47;
    letter-spacing: 0.2em;
    margin-bottom: 0.5rem;
}

.contact-subtitle {
    font-size: 1rem;
    color: #ff6b47;
    font-weight: 500;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
}

.contact-text {
    font-size: 1.1rem;
    color: #ff6b47;
    font-weight: 500;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.contact-description {
    font-size: 1rem;
    color: #666666;
    line-height: 1.7;
}

.btn-contact {
    background: #333333;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-contact:hover {
    background: #555555;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #f8f8f8;
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid #eeeeee;
}

.copyright {
    font-size: 0.9rem;
    color: #999999;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-content,
    .section-split,
    .service-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .service-title {
        font-size: 3rem;
    }
    
    .visual-background {
        font-size: 8rem;
    }
    
    .nav-menu {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-heading {
        font-size: 2rem;
    }
    
    .service-title,
    .company-title,
    .contact-title {
        font-size: 2.5rem;
    }
    
    .company-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        padding: 1rem 0;
    }
    
    .contact-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .hero,
    .mission,
    .service {
        padding: 4rem 0;
    }
    
    .company,
    .contact {
        padding: 3rem 0;
    }
}