:root{
--bg-primary: #F6F6F6;
--bg-secondary: #FFFFFF;

--text-primary:#2D2F2F;
--text-secondary: #5A5C5C;
--text-btn:#FFFFFF;

--accent-primary: #8D4A00;
--accent-secondary:#FDD34D;
--accent-subtle:#FE973C;

--header-h: 88px;
}
*, *::after, *::before {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

img{
    display: block;
    max-width: 100%;
    width: 100%;
    height: auto;
}
ul,ol{
    list-style: none;
}
a{
    text-decoration: none;
    color: inherit;
    display: inline-block;
}
button{
    display: block;
    border: none;
    color: var(--text-btn);
    background-color: var(--accent-primary);
    border-radius: 9999px;
    cursor: pointer;
}
body{
    color: var(--text-primary);
    background-color: var(--bg-primary);
    font-family: 'Be Vietnam Pro', sans-serif;
}

h1,h2,h3,h4{
    font-family: 'Space Grotesk', sans-serif;
}

section{
    padding-block: 128px;
}
.container{
    max-width:1280px;
    margin: 0 auto;
    padding: 0 48px;
}

header{
    height: var(--header-h);
    position: sticky;
    top: 0;
    z-index: 1;
    background-color: var(--bg-secondary);
    display: flex;
    justify-content: space-between;
}
.header__nav{
    margin-top: 31px;
    width:353px;
    height:26px;
    display: flex;
}

.header__nav-li{
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.35px;
    text-transform: uppercase ;
    color: var(--text-secondary);
    position: relative;
}
.header__nav-li a:hover{
    color: var(--accent-secondary);
}
.header__nav-li a{
    transition: color 0.3s ease-out;
}
.header__nav-li a::after{
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    border-radius: 9999px;
    background-color: var(--accent-secondary);
    transform: scaleX(0%);
    transition: transform 0.3s ease-out;
    transform-origin: left;
}
.header__nav-li a:hover::after{
    transform-origin: left;
    right: 1;
    transform: scaleX(100%);
}
.header__nav-list{
    display: flex;
    gap: 40px;
}

.header__btn{
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 1.2px;
    color: var(--text-btn);
    text-transform: uppercase;
    width: 163px;
    height: 40px;
    margin-top: 24px;
    margin-right: 48px;
    transition: transform 0.3s ease-out;
}
.header__btn:hover{
    transform: scale(110%);
}
.header__btn:active{
    transform: scale(100%);
}

.header__logo{
    width: 108px;
    height: 32px;
    margin-left: 48px;
    margin-top: 28px;
}
.header__logo-link{
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 900;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: -1.2px;
    color: #2D2F2F;
}

/*HERO*/
.hero{
    height: calc(100vh - var(--header-h));
    padding: 170px 0;
    background-image:  radial-gradient(ellipse 75% 55% at center, #FDD34D26, #FDD34D00);
}
.hero__container{
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 48px;
    place-content: center;
    margin-bottom: 148px;
}
.hero__article{ 
    grid-column: span 7;
    padding: 24px 0;

}
.hero__tag{
    display: inline-block;
    font-weight: 700;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 6px 16px;
    background-color: var(--accent-secondary);
    border-radius: 9999px;
    margin-bottom: 32px;
}
.hero__title{
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 120px;
    line-height: 117px;
    letter-spacing: -6.4px;
    margin-bottom: 32px;
}
.hero__title span{
    letter-spacing: 0;
    background: linear-gradient(to right, var(--accent-primary), var(--accent-subtle));
    background-clip: text;
    color: transparent;
}
.hero__description{
    font-weight: 300;
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 48px;
}
.hero__article-btn-wrapper{
    display: flex;
    align-items: center;
    gap: 24px;
}
.hero__article-btn-primary{
    padding: 20px 40px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-radius: 9999px;

    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    transition: transform 0.3s ease-out;
}

.hero__article-btn-primary:hover {
    transform: scale(110%);
}

.hero__article-btn-primary:active {
    transform: scale(100%);
}
.hero__article-btn-primary img{
    width: 13px;
    aspect-ratio: 1/1;
}
.hero__article-btn-secondary{
    padding: 20px 40px;
    border-radius: 9999px;

    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 1.4;
    text-transform: uppercase;
    background-color: var(--bg-secondary);
    border: 1px solid #ACADAD;
    color: var(--text-secondary);
    transition: all  0.3s ease-out;
    
}
.hero__article-btn-secondary:hover {
    
    background-color:#5A5C5C75;
    border: rgb(83, 81, 81) 1px solid;
}

.hero__article-btn-secondary:active {
    transform: scale(95%);
}
.hero__imgs-wrapper{
    position: relative;
    grid-column-start: 8;
    grid-column-end:13 ;
}
.hero__imgs-wrapper img:nth-child(1) {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 48px;
    left: 0;
    top: 0;
    object-fit: cover;
    object-position: center;
    filter: drop-shadow(0px 40px 80px -20);
    transform: rotate(3deg);
    transition: transform 0.3s linear;
}
.hero__imgs-wrapper img:nth-child(1):hover{
    transform: rotate(0deg);
}

.hero__imgs-wrapper img:nth-child(2){
    position: absolute;
    width: 256px;
    aspect-ratio: 1/1;
    left: -8%;
    bottom:-8%;
    border-radius: 48px;
    transform: rotate(-6deg);
    transition: transform 0.3s linear;
}

.hero__imgs-wrapper img:nth-child(2):hover{
    transform: rotate(0deg);
}

.gallery{
    background-color: var(--bg-secondary);
    
}
.gallery__head{
    display: grid;
    grid-template-columns: minmax(auto, 400px) min-content;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 64px;
}
.gallery__head-title{
font-weight: 900;
    font-size: 60px;
    line-height: 1;
    letter-spacing: -3px;
    margin-bottom: 16px;
}
.gallery__head-subtitle{
    font-size: 16px;
        line-height: 24px;
}
.gallery__head-link{
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 1.4px;
    color: var(--accent-primary);
    text-transform: uppercase;
    white-space: nowrap;

    display: flex;
    align-items: center;
    gap: 8px;
}
.gallery__head-link svg{
    width: 12px;
    aspect-ratio: 1/1;
    color: var(--accent-primary);
    fill: var(--accent-primary);
}

.gallery__list{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 388px);
    gap: 24px;
}
.gallery__card{
    display: block;
}
.gallery__card{
    position: relative;
    border-radius: 48px;
    overflow: hidden;
}
.gallery__card-image{
    object-fit: cover;
    height: 100%;
    transition: transform 350ms ease-out
}
.gallery__card-overlay{
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 40px;
    background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
    visibility: hidden;
    opacity: 0;
    transition: opacity 350ms ease-out, visibility 350ms ease-out;
}

.card__overlay-tag{
color: var(--bg-primary);
background-color: #C19f7b;
font-family: 'Space Grotesk', sans-serif;
font-size: 14px;
line-height: 16px;
font-weight: 700;
text-transform: uppercase;
padding: 4px 10px;
border-radius: 9999px;
margin-left: auto;
}
.card__overlay-lineup {
    color: var(--accent-secondary);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 12px;
    line-height: 16px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.card__overlay-name {
    color: var(--bg-secondary);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    margin-bottom: 8px;
}
.gallery__card--01 {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
}
.gallery__card--01.card__overlay-name{
        font-size: 36px;
            line-height: 40px;
}
.gallery__card--01, .gallery__card-overlay{
    padding: 40px;
}
.gallery__card--02 {
    grid-column: 3 / 5;
    grid-row: 1;
}
.gallery__card--02.card__overlay-name{
    font-size: 30px;
        line-height: 36px;
}
.gallery__card--02,
.gallery__card-overlay {
    padding: 32px;
}
.gallery__card--03 {
    grid-column: 3;
    grid-row: 2;
}

.gallery__card--03.card__overlay-name,
.gallery__card--04.card__overlay-name{
    font-size: 20px;
        line-height: 28px;
}
.gallery__card--04 {
    grid-column: 4;
    grid-row: 2;
}
.about{
    height: 100vh;
}
.about__container{
    max-width: 1184px;
    width: 100%;
    height: 739px;
    display: flex;
    gap: 80px;
    margin-top: 128px;
}
.about__content{
width: 552px;
height: 559px;
}

.about__title{
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 60px;
    line-height: 60px;
    letter-spacing: -3px;
    color: var(--text-primary);
    margin-bottom: 39px;
}
.about__subtitle{
    font-family: 'Be Vietnam Pro', sans-serif;
    font-weight: 300;
    font-size: 20px;
    line-height: 32.5px;
    letter-spacing: 0px;
    color: var(--text-secondary);
    margin-bottom: 48px;
}
.about__accent{
    font-family: 'Be Vietnam Pro',sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 32.5px;
    letter-spacing: 0px;
    color: var(--text-primary);
}
.about__description{
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0px;
    color: var(--text-primary);
    margin-bottom: 47px;
    border-left: 4px solid #f2a900;
    padding-left: 16px;
    color: var(--text-primary);
}


.about__list{
    display: flex;
    flex-direction: column;
    gap: 23px;
}
.about__item{
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    margin-left: 48px;
    margin: 20px 0;
    padding-left: 60px;
    position: relative;
}
.about__item::before{
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 40px;
    height: 4px;
    background: #f2c200;
    transform: translateY(-50%);
}

.about__img{
    width: 552px;
    height: 736px;
    border-radius: 48px;
}



.history__container{
    padding: 0 128px;
    margin-bottom: 128px;
}
.history__title{
font-weight: 900;
font-size: 60px;
line-height: 1;
letter-spacing: -3px;
margin-bottom: 16px;
background: linear-gradient(to right, var(--accent-primary), var(--accent-subtle) );
background-clip: text;
color: transparent ;
}

.history__subtitle{
font-size: 16px;
line-height: 24px;
}
.history__text-wrapper{
    max-width: 510px;
    margin: 0 auto;
    text-align: center;
    max-width: 512px;
    margin-bottom: 80px;
}
.history__evolution tr:not(:last-child){
border-bottom: 1px solid #e7e8e8;
}

table,
th,
td{
    border: none;
}

.history__evolution{
    max-width: 100%;
    width: 100%;
    border-radius: 48px;
    overflow: hidden;
    border-collapse: collapse;
    box-shadow: 0px 40px 80px -20px #c4721b77;
}

.history__evolution--head{
    background-image: radial-gradient(circle, rgb(236, 87, 0), rgb(194, 194, 36), rgb(255, 153, 0));
    color: #fdffff;
}

.history__evolution--head th{
    padding: 24px 32px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 2.4px;
    text-align: LEFT;
    text-transform: uppercase;
}

.history__evolution--body{
    background-color: var(--bg-secondary);
} 
.history__evolution--body tr:hover:not(.history__evolution--body--tr-active){
background-color: #fdd34d0b;
}

.history__evolution--body tr{
    transition: background-color o.2s ease-out;
}
.history__evolution--body--tr-active{
    background-color: #FDD34D1A;
}
.history__evolution--body th{
    height: 100px;
    padding: 40px 32px;
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    text-align: left;
}
.history__evolution--body td{
height: 100px;
    padding: 0 32px;
    font-size: 14px;
    line-height: 20px;
    text-align: left;
}

.history__evolution-tag{
    padding: 2.5px 16px;
    font-weight: 700;
    font-size: 10px;
    line-height: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 9999px;
}
.history__evolution-tag--muted{
    background-color: #E1E3E3;
}

.history__evolution-tag--primary{
    background-color: var(--accent-subtle);
}

.history__evolution-tag--secondary{
background-color: var(--accent-secondary);
}

.join{
background-color: var(--bg-secondary);
}

.join__outer-wrapper{
    background: linear-gradient(135deg, #8D4A00,#7C4000);
    padding: 8px 8px;
    border-radius: 48px;
}
.join__inner-wrapper{
    background-color: var(--bg-secondary);
    border-radius: 42px;
    padding: 80px;
    display: flex;
    gap: 64px;
    text-align: center;
}

.join__text-wrapper {
    flex: 1;
}



.join__title {
    font-weight: 700;
    font-size: 60px;
    line-height: 1;
    letter-spacing: -3px;
    margin-bottom: 24px;
}

.join__subtitle {
    font-size: 18px;
    line-height: 29.25px;
    margin-bottom: 32px;
}

.join__form {
    flex: 1;
}

.join__members {
    display: flex;
    align-items: center;
    gap: 24px;
}

.join__members-list {
    display: flex;
}

.join__members-list li {
    position: relative;
    max-width: 48px;
    width: 100%;
    aspect-ratio: 1/1;
    padding: 4px;
    border: 2px solid var(--accent-subtle);
    border-radius: 9999px;
    background-color: var(--bg-secondary);
}

.join__members-list li:not(:first-child) {
    margin-left: -8px;
}

.join__members-list li img {
    border-radius: 9999px;
}

.join__members-count {
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    color: var(--text-secondary);
}


.join__form-input label {
    display: block;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: 1px;
    margin-bottom: 4px;
    font-family: 'Space Grotesk', sans-serif;
    padding-left: 16px;
    text-align: left;
}

.join__form-input {
    margin-bottom: 32px;
}
.join__form-input input:focus{
    border: solid 1px green;
    outline: none;
}
.join__form-input input {
    font-size: 16px;
    line-height: 26px;
    padding: 16px 32px;
    background-color: #f0f1f1;
    color: var(--text-secondary);
    font-family: 'Space Grotesk', sans serif;
    border-radius: 9999px;
    border: none;
    width: 100%;
}

.join__form-input input::placeholder {
    font-family: 'Be Vietnam Pro', sans serif;
    color: #ACADAD;
}

.join__form-submit {
    font-family: 'Space Grotesk', sans-serif;
    padding: 20px 40px;
    border-radius: 9999px;
    width: 100%;
    background-color: var(--text-primary);
    color: var(--bg-secondary);

    font-weight: 700;
    font-size: 14;
    line-height: 20px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.join__container {
    padding: 0 64px;
}

.join__form-warning {
    text-transform: uppercase;
    text-align: center;
    color: #ACADAD;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
}

footer {
    display: flex;
    height: 164px;
    justify-content: space-between;
    align-items: center;
    background-color: var(--bg-primary);
}

.footer__logo-link {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 30px;
    line-height: 36px;
    letter-spacing: -1.5px;
    color: var(--text-primary);
    cursor: poiner;
}

.footer__logo {
    margin-left: 80px;
}

.footer__menu-list {
    display: flex;
    gap: 40px;
    font-family: 'Be Vietnam Pro', sans-serif;
    color: var(--text-secondary);
}

.footer__text {
    margin-right: 80px;
    font-family: 'Be Vietnam Pro', sans-serif;
    font-size: 10px;
    line-height: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
}


.gallery__card:hover .gallery__card-overlay{
    opacity: 1;
    visibility: visible;
}

.gallery__card:hover .gallery__card-image{
    transform: scale(1.1);
}
.modal__overlay{
    position: fixed;
    inset: 0;
    background-color: rgba(0,0,0,0.4);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease-out 0.3s,
    visibility 0.3s ease-out;
}
.modal__overlay.opened{
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.modal{
    position: fixed;
    top: 50%;
    left: 50%;
    background-color: var(--bg-secondary);
    transform: translate(-50%, -50%);
    padding: 40px;
    max-width: 512px;

}

.modal__close{
    position: absolute;
    top: 24px;
    right: 24px;
    width: 40px;
    aspect-ratio: 1/1;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f0f1f1;
    color: var(--text-secondary);
}
.modal__close span{
    rotate: (45deg);
}
.modal__head{
    position: relative;
    max-width: 220px;
        aspect-ratio: 1/1;
        margin: 0 auto;
}
.modal__head::before{
    content: '';
    position: absolute;
    inset: -22px;
    border-radius: 9999px;
    background-color: var(--accent-subtle);
    opacity: 20%;
    filter: blur(64px);

}
.modal__head-img{
    
    object-fit: cover;
    border-radius: 32px;
    transform: rotate(3deg);
}
.modal__close svg{
    display: block;
}
.modal__head-tag{
    background-color: var(--accent-secondary);
    padding: 10px 18px;
    border-radius: 9999px;
    position: absolute;
    border: 2px solid var(--bg-secondary);
    right: -3px;
    bottom: -10px;
transform: rotate(-12deg);
font-family: 'Space Grotesk', sans-serif;
color: #4e2600;
font-weight: 700;
font-size: 16px;
line-height: 24px;
}


.modal__discount{
    width: 100%;
    background-color: #f0f1f1;
    padding: 24px;
    border-radius: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    position: relative;
    overflow: hidden;
    margin-bottom: 32px;
}

.modal__discount::after{
    content: '';
    position: absolute;
    bottom: 100%;
    left: 100%;
    width: 96px;
    aspect-ratio: 1/1;
    border-radius: 9999px;
    background-color: #FDD34D;
    opacity: 0.3;
    filter: blur(40px);
    transform: translate(-50%, 50%);

}
.modal__discount-number{
font-family: 'Space Grotesk', sans-serif;
    color: var(--accent-secondary);
    font-weight: 700;
    font-size: 48px;
    line-height: 48px;
    color: var(--accent-primary);
}

.modal__discount-text{
    font-family: 'Be Vietnam Pro', sans-serif;
        color: var(--text-secondary);
        font-weight: 700;
        font-size: 12px;
        line-height: 16px;
        text-transform: uppercase;
        letter-spacing: 1.2px;
}

.modal__code{
    background-color: #E7E8E8;
    border-radius: 9999px;
    height: 62px;
    margin-bottom: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-primary);

    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 2px;
}

.modal__code span{
    margin-left: 12px;
}


.modal__copy{
    background-color: var(--accent-primary);
    border-radius: 9999px;
    height: 62px;
    margin-bottom: 16px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;

    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 28px;
}

.modal__copy svg{
    margin-right: 8px;
}

.modal__footer{
    font-family: 'Be Vietnam Pro',sans-serif;
    font-size: 10px;
    line-height: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #5A5C5C99;
}