/* about/style.css - specific styles for about page */

#main {
    padding-top: 0;
    min-height: 100vh;
    background: #ffffff;
}

/* Hero Section */
.about-hero {
    position: relative;
    padding: calc(var(--nav-h-px, 70px) + 100px) 40px 100px;
    text-align: left;
    background: #ffffff;
    overflow: hidden;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.section-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #666666;
    margin-bottom: 16px;
    position: relative;
}

.section-label::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #C0C0C0, #D4AF37);
}

.hero-title {
    font-size: clamp(3rem, 8vw, 4rem);
    font-weight: 700;
    color: #0b0b0b;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.75rem);
    color: #666666;
    font-weight: 400;
    margin: 0;
    max-width: 600px;
}

.gradient-box {
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
    width: 300px;
    height: 300px;
    background: linear-gradient(145deg, #D4AF37 0%, #C0C0C0 40%, #E8D48B 70%, #D4AF37 100%);
    opacity: 0.2;
    border-radius: 24px;
    z-index: 0;
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
}

.gradient-box::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 255, 255, 0.03) 10px,
        rgba(255, 255, 255, 0.03) 20px
    );
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.gradient-box-right {
    right: 5%;
    top: 20%;
    transform: none;
}

/* Origin Section */
.origin-section {
    padding: 80px 40px;
    background: #fafafa;
}

.origin-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.origin-story .section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: #0b0b0b;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.origin-story p {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: #555555;
    line-height: 1.8;
    margin-bottom: 16px;
}

.origin-story p:last-child {
    margin-bottom: 0;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-card {
    background: #ffffff;
    padding: 32px 24px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.stat-value {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #0b0b0b;
    margin-bottom: 8px;
    background: linear-gradient(90deg, #C0C0C0, #D4AF37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Philosophy Section */
.philosophy-section {
    position: relative;
    padding: 80px 40px;
    background: #ffffff;
    overflow: hidden;
}

.philosophy-content {
    max-width: 800px;
    position: relative;
    z-index: 1;
}

.philosophy-content .section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: #0b0b0b;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.philosophy-content p {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: #555555;
    line-height: 1.8;
    margin-bottom: 16px;
}

/* Quote Block */
.quote-block {
    position: relative;
    margin: 48px 0;
    padding: 48px 48px 48px 72px;
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
    border-left: 4px solid;
    border-image: linear-gradient(180deg, #D4AF37, #C0C0C0) 1;
}

.quote-block::before {
    content: '"';
    position: absolute;
    top: -5px;
    left: 16px;
    font-family: Georgia, serif;
    font-size: 8rem;
    color: #D4AF37;
    opacity: 0.25;
    line-height: 1;
    font-weight: bold;
}

.quote-block::after {
    content: '"';
    position: absolute;
    bottom: -30px;
    right: 24px;
    font-family: Georgia, serif;
    font-size: 6rem;
    color: #D4AF37;
    opacity: 0.15;
    line-height: 1;
    font-weight: bold;
}

.quote-block p {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    font-style: italic;
    color: #222222;
    line-height: 1.8;
    margin: 0;
    font-weight: 500;
}

/* Contact Section */
.contact-section {
    padding: 80px 40px;
    background: #fafafa;
    text-align: center;
}

.contact-section .section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: #0b0b0b;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.contact-section > p {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: #555555;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-methods {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.contact-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    text-decoration: none;
    color: #0b0b0b;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-item:hover {
    border-color: #D4AF37;
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.contact-item i {
    color: #D4AF37;
    font-size: 1.1rem;
}

/* Footer */
#footer {
    padding: 0;
}

/* Fade-in-up Animation */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .about-hero {
        padding: calc(var(--nav-h-px, 70px) + 80px) 32px 80px;
    }
    
    .gradient-box {
        width: 220px;
        height: 220px;
        right: 5%;
    }
    
    .origin-section {
        padding: 80px 32px;
    }
    
    .origin-grid {
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: calc(var(--nav-h-px, 70px) + 60px) 24px 60px;
        text-align: center;
    }
    
    .hero-subtitle {
        margin: 0 auto;
    }
    
    .gradient-box {
        width: 180px;
        height: 180px;
        right: 50%;
        transform: translateX(50%) translateY(-50%);
        top: 40%;
        opacity: 0.1;
    }
    
    .gradient-box::before {
        display: none;
    }
    
    .gradient-box-right {
        display: none;
    }
    
    .origin-section {
        padding: 60px 24px;
    }
    
    .origin-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .origin-story .section-title {
        font-size: clamp(1.75rem, 5vw, 2.5rem);
    }
    
    .philosophy-section {
        padding: 60px 24px;
    }
    
    .philosophy-content .section-title {
        font-size: clamp(1.75rem, 5vw, 2.5rem);
    }
    
    .quote-block {
        padding: 40px 24px 40px 48px;
    }
    
    .quote-block::before {
        font-size: 5rem;
        left: 8px;
    }
    
    .quote-block::after {
        font-size: 4rem;
        bottom: -20px;
        right: 16px;
    }
    
    .contact-section {
        padding: 60px 24px;
    }
    
    .contact-methods {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-item {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: calc(var(--nav-h-px, 70px) + 40px) 16px 40px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .origin-section,
    .philosophy-section,
    .contact-section {
        padding: 48px 16px;
    }
    
    .section-label {
        font-size: 0.75rem;
    }
    
    .quote-block {
        padding: 32px 16px 32px 40px;
    }
    
    .quote-block::before {
        font-size: 3.5rem;
        left: 4px;
    }
    
    .quote-block::after {
        font-size: 2.5rem;
        bottom: -15px;
        right: 12px;
    }
}