/*========================
ABOUT HERO
=========================*/

#about_hero{

position:relative;

height:760px;

background:url("../images/about_hero.jpg") center center/cover no-repeat;
display:flex;
align-items:center;
overflow:hidden;
}

/* OVERLAY */

#about_hero_overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;

background:
linear-gradient(90deg,rgba(4,25,19,.88),rgba(4,25,19,.45));
}

/* CONTENT */

#about_hero_content{

position:relative;
z-index:2;
width:88%;
max-width:1400px;
margin:auto;
display:flex;
align-items:center;
}

#about_hero_content>div{
max-width:680px;
display:flex;
flex-direction:column;
align-items:flex-start;
}

/* TAG */

.about_tag{
display:inline-flex;
align-items:center;
justify-content:center;
padding:10px 18px;
border-radius:40px;
background:rgba(214,180,94,.12);
border:1px solid rgba(214,180,94,.22);
font:12px amplitude_regular;
letter-spacing:1.5px;
color:var(--gold);
margin-bottom:28px;
}

/* TITLE */
#about_hero_content h2{
font:76px PlayfairDisplay;
line-height:1.02;
color:white;
margin-bottom:26px;
}

/* TEXT */

#about_hero_content p{

font:18px amplitude_regular;
line-height:1.95;

color:
rgba(255,255,255,.78);

margin-bottom:36px;
}

/*========================
ACTIONS
=========================*/

.about_hero_actions{

display:flex;
align-items:center;

flex-wrap:nowrap;

gap:18px;

width:100%;
}

/* BUTTONS */

.about_hero_actions a{

flex:1;

height:58px;

box-sizing:border-box;

display:flex;
align-items:center;
justify-content:center;

padding:0 28px;

border-radius:40px;

text-decoration:none;

text-align:center;

font:14px amplitude_regular;

width:auto;

transition:.35s;
}

/* PRIMARY */

.about_hero_actions a:nth-child(1){

background:var(--gold);
color:var(--base);
}

.about_hero_actions a:nth-child(1):hover{

background:#e1c36f;
}

/* SECONDARY */

.about_hero_actions a:nth-child(2){

border:
1px solid
rgba(255,255,255,.18);

background:
rgba(255,255,255,.05);

color:white;
}

.about_hero_actions a:nth-child(2):hover{

background:
rgba(255,255,255,.12);
}

/*========================
ABOUT STORY
=========================*/

#about_story_section{

padding:120px 0;

background:#F6F3EC;
}

/* CONTAINER */

#about_story_container{

width:88%;
max-width:1350px;

margin:auto;

display:flex;
align-items:center;

gap:70px;
}

/*========================
IMAGE
=========================*/

#about_story_image{

flex:1;
}

#about_story_image figure{

position:relative;

height:620px;

overflow:hidden;

border-radius:24px;
}

#about_story_image figure img{

width:100%;
height:100%;

object-fit:cover;

display:block;
}

/* FRAME */

#about_story_image figure:after{

content:'';

position:absolute;

top:20px;
left:20px;
right:20px;
bottom:20px;

border:
1px solid
rgba(255,255,255,.18);

border-radius:20px;
}

/*========================
CONTENT
=========================*/

#about_story_content{

flex:1;

display:flex;
flex-direction:column;
align-items:flex-start;
}

/* TAG */

.about_section_tag{

font:12px amplitude_regular;
letter-spacing:2px;

color:var(--gold);

margin-bottom:22px;
}

/* TITLE */

#about_story_content h2{

font:58px PlayfairDisplay;
line-height:1.08;

color:var(--base);

margin-bottom:26px;
}

/* TEXT */

#about_story_content > p{

font:16px amplitude_regular;
line-height:2em;

color:#5C6661;

margin-bottom:22px;
}

/*========================
FEATURES
=========================*/

#story_features{

display:flex;

gap:22px;

margin-top:26px;

width:100%;
}

/* CARD */

.story_feature{

flex:1;

padding:28px;

background:white;

border-radius:18px;

box-shadow:
0 14px 40px
rgba(0,0,0,.04);
}

/* TITLE */

.story_feature h4{

font:24px PlayfairDisplay;
color:var(--base);

margin-bottom:10px;
}

/* TEXT */

.story_feature p{

font:14px amplitude_regular;
line-height:1.8;

color:#5F6764;
}

/*========================
VALUES SECTION
=========================*/

#about_values_section{

padding:120px 0;

background:#fff;
}

/* HEADER */

#about_values_header{

width:88%;
max-width:900px;

margin:auto auto 60px auto;

display:flex;
flex-direction:column;
align-items:center;

text-align:center;
}

#about_values_header h2{

font:56px PlayfairDisplay;
line-height:1.08;

color:var(--base);

margin:18px 0;
}

#about_values_header p{

font:16px amplitude_regular;
line-height:1.95;

color:#5C6661;

max-width:720px;
}

/* GRID */

#about_values_grid{

width:88%;
max-width:1350px;

margin:auto;

display:flex;
flex-wrap:nowrap;

gap:24px;
}

/* CARD */

.value_card{

flex:1;

min-width:0;

padding:38px 28px;

background:#F8F6F1;

border-radius:24px;

transition:.35s;

box-shadow:
0 12px 40px
rgba(0,0,0,.03);
}

.value_card:hover{
transform:translateY(-6px);
box-shadow:
0 24px 65px
rgba(0,0,0,.08);
}

/* ICON */

.value_icon{

width:66px;
height:66px;

display:flex;
align-items:center;
justify-content:center;

border-radius:18px;

background:
rgba(214,180,94,.10);

margin-bottom:24px;
}

.value_icon svg{

width:28px;
height:28px;

stroke:var(--gold);
stroke-width:1.8;
}

/* TITLE */

.value_card h3{

font:28px PlayfairDisplay;
color:var(--base);

margin-bottom:14px;
}

/* TEXT */

.value_card p{

font:14px amplitude_regular;
line-height:1.9;

color:#5F6764;
}