/*========================================
ABOUT HERO
========================================*/

.about-hero{
    position:relative;
    background:linear-gradient(135deg,#0d1625 0%,#1a2232 50%,#101827 100%);
    padding:180px 20px 170px;
    overflow:hidden;
}

.about-hero-overlay{
    position:absolute;
    inset:0;
    background:radial-gradient(circle at top right,
        rgba(201,157,59,.12),
        transparent 55%);
    pointer-events:none;
}

.about-hero .container{
    max-width:900px;
    margin:0 auto;
    position:relative;
    z-index:2;
    text-align:center;
}

.about-tag{
    display:inline-block;
    color:#C89B3C;
    font-size:14px;
    font-weight:600;
    letter-spacing:3px;
    text-transform:uppercase;
    margin-bottom:30px;
}

.about-hero h1{
    color:#fff;
    font-size:72px;
    line-height:1.08;
    font-weight:500;
    font-family:Georgia,serif;
    margin-bottom:30px;
}

.about-hero p{
    max-width:760px;
    margin:auto;
    color:#d6d6d6;
    font-size:22px;
    line-height:1.8;
}

/* Tablet */

@media(max-width:992px){

.about-hero{
padding:160px 25px 140px;
}

.about-hero h1{
font-size:56px;
}

.about-hero p{
font-size:20px;
}

}

/* Mobile */

@media(max-width:768px){

.about-hero{
padding:140px 20px 110px;
}

.about-tag{
font-size:12px;
}

.about-hero h1{
font-size:42px;
line-height:1.2;
}

.about-hero p{
font-size:17px;
line-height:1.7;
}

}

/* ========================================
   ABOUT STORY
======================================== */

.about-story{
    padding:120px 0;
    background:#fff;
}

.about-story-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

.about-story-image img{
    width:100%;
    border-radius:18px;
    display:block;
}

.about-story-content .section-tag{
    display:inline-block;
    color:#caa247;
    text-transform:uppercase;
    letter-spacing:3px;
    font-size:13px;
    margin-bottom:20px;
}

.about-story-content h2{
    font-size:56px;
    line-height:1.1;
    color:#1f2330;
    margin-bottom:30px;
    font-weight:500;
}

.about-story-content p{
    font-size:18px;
    line-height:1.9;
    color:#666;
    margin-bottom:24px;
}

@media(max-width:991px){

.about-story-grid{
    grid-template-columns:1fr;
    gap:50px;
}

.about-story-content h2{
    font-size:40px;
}

} 