:root {
    --bg-dark: #0a0c10;
    --bg-accent: #16181d;
    --gold: #c5a059;
    --gold-dim: #a68545;
    --text-white: #f8f9fa;
    --text-gray: #a0a0a0;
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
}

.about-hero {
    height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)),
        url('https://images.unsplash.com/photo-1559339352-11d035aa65de?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 50%, transparent 0%, rgba(10, 12, 16, 0.9) 100%);
    z-index: 1;
}

.about-hero .container {
    position: relative;
    z-index: 5;
    text-align: left;
}

.hero-content {
    max-width: 900px;
}

.about-hero h1 {
    font-size: clamp(4rem, 8vw, 7rem);
    line-height: 0.95;
    margin: 2.5rem 0;
    font-weight: 300;
}

.about-hero .hero-sub {
    font-size: 1.3rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 0 2rem 0;
    line-height: 1.6;
    font-weight: 300;
}

.hero-stats {
    display: flex;
    gap: 5rem;
}

.h-stat {
    display: flex;
    flex-direction: column;
}

.h-stat .num {
    font-size: 2.5rem;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
}

.h-stat .lab {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-gray);
    margin-top: 0.5rem;
}

.scroll-box {
    position: absolute;
    bottom: 5rem;
    left: 5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    transform: rotate(-90deg);
    transform-origin: left bottom;
    color: rgba(255, 255, 255, 1) !important;
    font-size: 0.7rem;
    letter-spacing: 5px;
    z-index: 5;
}

.scroll-box .line {
    width: 100px;
    height: 1px;
    background: var(--gold);
    opacity: 0.3;
}

.story-section {
    padding: 15rem 0;
    background: var(--bg-dark);
    position: relative;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10rem;
    align-items: center;
}

.story-content {
    padding-right: 4rem;
}

.story-content h2 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 2.5rem;
}

.story-content p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.story-img-container {
    position: relative;
    height: 800px;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--glass-border);
}

.story-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: transform 0.8s ease-out;
}

.vision-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 10rem;
    perspective: 1000px;
}

.vision-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    padding: 4rem 3rem;
    border: 1px solid var(--glass-border);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    backdrop-filter: blur(5px);
    border-radius: 4px;
}

.vision-card:hover {
    border-color: var(--gold);
    transform: translateY(-20px) rotateX(5deg);
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.05), transparent);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
}

.vision-card h3 {
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    letter-spacing: 1px;
}

.vision-card p {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.6;
}

/* Team Section */
.team-section {
    padding: 15rem 0;
    background: var(--bg-accent);
}

.section-header {
    margin-bottom: 8rem;
}

.section-sub {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 2rem auto 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
}

.team-card {
    position: relative;
    background: var(--bg-dark);
    padding: 1.5rem;
    border: 1px solid var(--glass-border);
    transition: var(--transition-med);
    border-radius: 4px;
}

.team-card:hover {
    border-color: var(--gold);
    transform: translateY(-10px);
}

.team-img-wrapper {
    position: relative;
    height: 450px;
    overflow: hidden;
    border-radius: 4px;
    margin-bottom: 2.5rem;
}

.team-img-wrapper .placeholder-img {
    height: 100%;
    width: 100%;
    transition: transform 0.8s ease;
}

.team-card:hover .team-img-wrapper .placeholder-img {
    transform: scale(1.1);
}

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(197, 160, 89, 0.4), transparent);
    opacity: 0;
    transition: var(--transition-med);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-card:hover .team-overlay {
    opacity: 1;
}

.team-social {
    display: flex;
    gap: 1.5rem;
}

.team-social a {
    color: var(--text-white);
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 2px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 1rem;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    transition: var(--transition-med);
}

.team-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--bg-dark);
}

.team-info h4 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.team-info span {
    display: block;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    margin-bottom: 1.5rem;
}

.team-info p {
    color: var(--text-gray);
    font-style: italic;
    font-size: 0.95rem;
}

/* Ingredients Section */
.ingredients-section {
    padding: 15rem 0;
    background: var(--bg-dark);
    overflow: hidden;
}

.container-fluid {
    padding: 0 10rem;
}

.ing-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 10rem;
    align-items: center;
}

.ing-content h2 {
    font-size: 5rem;
    margin-bottom: 4rem;
}

.ing-labels {
    margin-top: 5rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.ing-label-item {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    padding: 2.5rem;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 4px;
    transition: var(--transition-med);
}

.label-txt {
    display: flex;
    flex-direction: column;
}

.label-txt strong {
    color: var(--text-white);
    font-size: 1.1rem;
    letter-spacing: 1px;
    margin-bottom: 0.3rem;
}

.label-txt span {
    color: var(--text-gray);
    font-size: 0.85rem;
}

.ing-label-item:hover {
    border-color: var(--gold);
    transform: translateX(10px);
    background: rgba(197, 160, 89, 0.05);
}

.label-dot {
    width: 10px;
    height: 10px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--gold);
}

.ing-visual {
    position: relative;
}

.ing-parallax-wrapper {
    height: 800px;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

.ing-img {
    height: 120%;
    width: 100%;
}

.ing-floating-card {
    position: absolute;
    bottom: -5%;
    left: -10%;
    background: var(--gold);
    color: var(--bg-dark);
    padding: 4rem;
    border-radius: 4px;
    max-width: 300px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
}

.ing-floating-card h3 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Design Section */
.design-section {
    padding: 15rem 0;
    background: var(--bg-accent);
}

.design-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 12rem;
    align-items: center;
}

.design-img-stack {
    position: relative;
    height: 700px;
}

.design-main-img {
    width: 80%;
    height: 90%;
    border: 1px solid var(--glass-border);
    padding: 1rem;
    background: var(--glass);
}

.design-main-img .placeholder-img {
    height: 100%;
    width: 100%;
}

.design-sub-img {
    position: absolute;
    bottom: -10%;
    right: 0;
    width: 50%;
    height: 60%;
    border: 1px solid var(--gold);
    padding: 1rem;
    background: var(--bg-dark);
    z-index: 2;
}

.design-sub-img .placeholder-img {
    height: 100%;
    width: 100%;
}

.design-content h2 {
    font-size: 5rem;
    margin-bottom: 4rem;
}

.design-stats {
    display: flex;
    gap: 5rem;
    margin-top: 6rem;
    border-top: 1px solid var(--glass-border);
    padding-top: 4rem;
}

.d-num {
    display: block;
    font-size: 3rem;
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.d-label {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: var(--text-gray);
}

/* Awards Section */
.awards-section {
    padding: 15rem 0;
    background: var(--bg-dark);
    text-align: center;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 8rem;
}

.award-item {
    padding: 5rem 3rem;
    border: 1px solid var(--glass-border);
    transition: var(--transition-med);
    border-radius: 4px;
    background: var(--glass);
}

.award-item.active,
.award-item:hover {
    background: linear-gradient(to bottom, rgba(197, 160, 89, 0.1), transparent);
    border-color: var(--gold);
    transform: scale(1.05);
}

.award-year {
    font-size: 0.9rem;
    color: var(--gold);
    letter-spacing: 4px;
    margin-bottom: 2rem;
}

.award-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--text-white);
    margin-bottom: 1.5rem;
}

.award-item p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .container-fluid {
        padding: 0 2rem;
    }

    .about-hero {
        text-align: center;
        padding-top: 8rem;
    }

    .about-hero .container {
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .about-hero h1 {
        font-size: 3.5rem;
    }

    .about-hero .hero-sub {
        margin: 0 auto 3rem;
    }

    .hero-stats {
        justify-content: center;
        gap: 3rem;
    }

    .scroll-box {
        display: none;
    }

    .story-section,
    .team-section,
    .ingredients-section,
    .design-section,
    .awards-section {
        padding: 8rem 0;
    }

    .story-grid,
    .team-grid,
    .ing-grid,
    .design-grid,
    .awards-grid,
    .vision-cards {
        grid-template-columns: 1fr !important;
        gap: 1rem;
        text-align: center;
    }

    .story-content,
    .ing-content,
    .design-content {
        padding-right: 0;
    }

    .story-content h2,
    .ing-content h2,
    .design-content h2 {
        font-size: 3rem;
    }

    .story-img-container {
        height: 500px;
    }

    .team-img-wrapper {
        height: 500px;
    }

    .ing-parallax-wrapper {
        height: 450px;
    }

    .ing-floating-card {
        position: relative;
        left: 0;
        bottom: 0;
        margin: -5rem auto 0;
        width: 90%;
        max-width: 100%;
        padding: 3rem;
    }

    .ing-floating-card h3 {
        font-size: 2.2rem;
    }

    .design-img-stack {
        height: 550px;
    }

    .design-main-img {
        width: 100%;
        height: 80%;
    }

    .design-sub-img {
        width: 60%;
        height: 50%;
        bottom: 0;
    }

    .design-stats {
        justify-content: center;
        gap: 3rem;
        flex-wrap: wrap;
    }

    .award-item {
        padding: 4rem 2rem;
    }
}

@media (max-width: 480px) {
    .about-hero h1 {
        font-size: 2.8rem;
    }

    .hero-stats {
        gap: 3rem;
    }

    .story-img-container {
        height: 350px;
    }

    .team-img-wrapper {
        height: 400px;
    }

    .ing-parallax-wrapper {
        height: 350px;
    }

    .design-img-stack {
        height: 400px;
    }
}