/* =========================
   GOOGLE FONTS
========================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* =========================
   ROOT VARIABLES
========================= */

:root{

    /* Colors */
    --white:#FFFFFF;
    --off-white:#F8F8F8;
    --black:#111111;
    --text:#444444;
    --gray:#777777;
    --border:#EAEAEA;
    --gold:#B08D57;
    --gold-hover:#977645;

    /* Layout */
    --container:1200px;

    /* Radius */
    --radius:12px;

    /* Transition */
    --transition:0.3s ease;

    /* Shadow */
    --shadow:0 10px 30px rgba(0,0,0,.08);

}

/* =========================
   RESET
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    background:var(--white);
    color:var(--black);
    font-family:'Inter',sans-serif;
    overflow-x:hidden;
}

a{
    text-decoration:none;
    color:inherit;
}

ul{
    list-style:none;
}

img{
    max-width:100%;
    display:block;
}

button{
    border:none;
    background:none;
    cursor:pointer;
    font-family:inherit;
}

.container{
    width:min(90%, var(--container));
    margin:auto;
}

h1,
h2,
h3,
h4,
h5,
h6{

    font-family:'Cormorant Garamond',serif;
    font-weight:600;
    line-height:1.1;

}

p{

    color:var(--text);
    line-height:1.7;

}

::selection{

    background:var(--gold);
    color:var(--white);

}

::-webkit-scrollbar{

    width:8px;

}

::-webkit-scrollbar-track{

    background:var(--off-white);

}

::-webkit-scrollbar-thumb{

    background:var(--gold);

}

::-webkit-scrollbar-thumb:hover{

    background:var(--gold-hover);

}



/*==============================
HERO
==============================*/

.hero{

    position:relative;

    min-height:100vh;

    display:flex;
    align-items:center;

    overflow:hidden;

    background:#fff;

}

/*==============================
IMAGE
==============================*/

.hero-image{
    position:absolute;
    top:0;
    right:0;
    width:100%;
    height:100%;
    z-index:1;
}

.hero-image img{
    width:100%;
    height:100%;
    object-fit:cover;

    object-position:68% -90px;
}

/*==============================
OVERLAY
==============================*/

.hero-overlay{
    position:absolute;
    inset:0;
    z-index:2;
    background:linear-gradient(
        90deg,
        rgba(255,255,255,.98) 0%,
        rgba(255,255,255,.95) 24%,
        rgba(255,255,255,.82) 38%,
        rgba(255,255,255,.45) 52%,
        rgba(255,255,255,0) 68%
    );

}

/*==============================
CONTENT
==============================*/

.hero .container{

    position:relative;

    z-index:3;

}

.hero-content{
    max-width:620px;
}

.hero-title{
    font-size:76px;
    line-height:.95;
    margin-bottom:30px;
}

.hero-description{
    max-width:480px;
    font-size:18px;
    line-height:1.8;
    margin-bottom:45px;
}

/*==============================
BUTTONS
==============================*/

.hero-buttons{

    display:flex;
    align-items:center;
    gap:20px;
    margin-top:45px;

}

.btn{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    min-width:220px;
    height:60px;

    padding:0 40px;

    font-size:13px;
    font-weight:600;

    letter-spacing:3px;
    text-transform:uppercase;

    border-radius:2px;

    transition:all .35s ease;

}

/* Black Button */

.btn-primary{

    background:#111;
    color:#fff;

    border:1px solid #111;

}

.btn-primary:hover{

    background:var(--gold);
    border-color:var(--gold);

    transform:translateY(-3px);

}

/* White Button */

.btn-secondary{

    background:rgba(255,255,255,.65);

    backdrop-filter:blur(12px);

    border:1px solid rgba(176,141,87,.5);

    color:var(--gold);

}

.btn-secondary:hover{

    background:var(--gold);
    color:#fff;

    transform:translateY(-3px);

}

/* ===========================
   HERO MOBILE
=========================== */

.hero-mobile-image{
    display:none;
}

@media (max-width:768px){

.hero{
    background-image:none !important;
    min-height:auto;
    padding:95px 0 60px;
}

.hero-image{
    display:none !important;
}

.hero-overlay{
    display:none;
}

.hero-mobile-image{
    display:block !important;
    width:100%;
    margin:20px 0 30px;
}

.hero-mobile-image img{
    width:100%;
    height:280px;
    object-fit:cover;
    object-position:center top;
    border-radius:24px;
    display:block;
}

.hero-content{
    max-width:100%;
    text-align:center;
}

.hero-subtitle{
    font-size:12px;
    letter-spacing:4px;
    margin-bottom:18px;
}

.hero-title{
    font-size:42px;
    line-height:.95;
    margin-bottom:20px;
}

.hero-description{
    max-width:320px;
    margin:0 auto 30px;
    font-size:16px;
}

.hero-buttons{
    display:flex;
    flex-direction:column;
    gap:14px;
}

.hero-buttons .btn{
    width:100%;
}

}

/*==========================================
FEATURED COLLECTIONS
==========================================*/

.featured{

    padding:120px 0;

    background:#fff;

}

.featured-heading{

    text-align:center;

    max-width:700px;

    margin:0 auto 70px;

}

.section-subtitle{

    display:inline-block;

    font-size:13px;

    letter-spacing:4px;

    color:var(--gold);

    text-transform:uppercase;

    margin-bottom:18px;

}

.section-title{

    font-size:56px;

    margin-bottom:18px;

    color:var(--black);

}

.section-description{

    font-size:18px;

    color:var(--text);

    line-height:1.8;

}

/*========================*/

.featured-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:32px;

}

/*========================*/

.collection-card{

    position:relative;

    height:600px;

    overflow:hidden;

    border-radius:24px;

    cursor:pointer;

    box-shadow:0 20px 60px rgba(0,0,0,.08);

}

/*========================*/

.collection-card img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:transform .8s ease;

}

/*========================*/

.collection-card::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(

        to top,

        rgba(0,0,0,.55) 5%,

        rgba(0,0,0,.20) 35%,

        rgba(0,0,0,0) 65%

    );

    z-index:1;

}

/*========================*/

.collection-card:hover img{

    transform:scale(1.08);

}

/*========================*/

.collection-overlay{

    position:absolute;

    left:45px;

    bottom:45px;

    z-index:2;

    color:#fff;

}

.collection-overlay span{

    display:block;

    font-size:13px;

    letter-spacing:3px;

    text-transform:uppercase;

    margin-bottom:12px;

    opacity:.9;

}

.collection-overlay h3{

    font-size:56px;

    margin-bottom:20px;

    color:#fff;

}

.collection-btn{

    display:inline-flex;

    align-items:center;

    gap:10px;

    font-size:15px;

    font-weight:600;

    letter-spacing:1px;

    color:#fff;

    transition:.3s;

}

.collection-btn:hover{

    color:var(--gold);

    transform:translateX(6px);

}

.section-divider{

    width:90px;

    height:1px;

    background:linear-gradient(
        90deg,
        transparent,
        var(--gold),
        transparent
    );

    margin:24px auto 30px;

}

.collection-divider{

    width:85px;

    height:1px;

    background:linear-gradient(
        90deg,
        var(--gold),
        rgba(255,255,255,.25)
    );

    margin:14px 0 20px;

}

@media (max-width:768px){

.featured{

    padding:80px 0;

}

.featured-heading{

    margin-bottom:45px;

}

.section-title{

    font-size:40px;

}

.section-description{

    font-size:16px;

    max-width:320px;

    margin:auto;

}

.featured-grid{

    grid-template-columns:1fr;

    gap:22px;

}

.collection-card{

    height:400px;

}

.collection-overlay{

    left:28px;

    bottom:28px;

}

.collection-overlay h3{

    font-size:42px;

}

}

/*==========================================
WHY AVELON
==========================================*/

.why-avelon{

    padding:120px 0;
    background:#faf8f5;

}

.why-header{

    text-align:center;
    max-width:760px;
    margin:0 auto 70px;

}

.section-subtitle{

    display:inline-block;

    font-size:13px;
    font-weight:600;

    letter-spacing:4px;
    text-transform:uppercase;

    color:var(--gold);

    margin-bottom:18px;

}

.section-title{

    font-size:56px;
    line-height:1.05;
    color:var(--black);

    margin-bottom:22px;

}

.section-line{

    width:70px;
    height:2px;

    background:var(--gold);

    margin:0 auto 24px;

}

.section-description{

    max-width:620px;
    margin:auto;

    font-size:17px;
    line-height:1.9;

    color:var(--text);

}

/*==========================================
GRID
==========================================*/

.why-grid{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;

}

/*==========================================
CARD
==========================================*/

.why-card{

    background:#fff;

    border:1px solid var(--border);

    border-radius:18px;

    padding:45px 28px;

    text-align:center;

    transition:.35s ease;

}

.why-card:hover{

    transform:translateY(-8px);

    border-color:rgba(176,141,87,.35);

    box-shadow:0 18px 40px rgba(0,0,0,.08);

}

/*==========================================
ICON
==========================================*/

.why-icon{
    width:72px;
    height:72px;
    margin:0 auto 24px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    background:#faf8f4;
    color:var(--gold);
    font-size:30px;
    transition:.35s;

}

.why-card:hover .why-icon{
    background:var(--gold);
    color:#fff;

}

/*==========================================
TEXT
==========================================*/

.why-card h3{
    font-size:24px;
    margin-bottom:14px;
    color:var(--black);

}

.why-card p{
    font-size:15px;
    line-height:1.8;
    color:var(--gray);

}

/*==========================================
WHY AVELON - MOBILE
==========================================*/

@media (max-width:768px){

.why-avelon{

    padding:80px 0;

}

.why-header{

    margin-bottom:45px;

}

.section-subtitle{

    font-size:12px;
    letter-spacing:4px;

}

.section-title{

    font-size:38px;
    line-height:1.1;

}

.section-line{

    width:55px;
    margin:18px auto 20px;

}

.section-description{

    max-width:330px;
    font-size:15px;
    line-height:1.8;

}

/*==========================
GRID
==========================*/

.why-grid{

    grid-template-columns:repeat(2,1fr);
    gap:16px;

}

/*==========================
CARD
==========================*/

.why-card{

    padding:28px 18px;
    border-radius:16px;

}

/*==========================
ICON
==========================*/

.why-icon{

    width:58px;
    height:58px;

    font-size:24px;

    margin-bottom:18px;

}

/*==========================
TEXT
==========================*/

.why-card h3{

    font-size:17px;
    margin-bottom:10px;

}

.why-card p{

    font-size:13px;
    line-height:1.6;

}

}

/*==========================================
NEW ARRIVALS
==========================================*/

.new-arrivals{

    padding:120px 0;

    background:#fff;

}

/*==========================================
HEADER
==========================================*/

.arrivals-header{

    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;

    margin-bottom:60px;

}

.arrivals-header .section-title{

    margin-top:12px;
    text-align: center;

}

.view-all{

    margin-top:22px;

    display:flex;
    align-items:center;
    gap:8px;

    color:var(--black);

    text-decoration:none;

}
.view-all:hover{

    color:var(--gold);

}

.view-all i{

    font-size:18px;

}

/*==========================================
GRID
==========================================*/

.arrivals-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:28px;

}

/*==========================================
CARD
==========================================*/

.product-card{

    position:relative;
    border-radius:18px;
    overflow:hidden;
    transition:.35s;
    box-shadow:
0 20px 45px rgba(0,0,0,.10);


}

.product-card:hover{

    transform:translateY(-8px);

}

/*==========================================
IMAGE
==========================================*/

.product-image{

    background:#ffffff;

    border-radius:18px;

    overflow:hidden;

}

.product-image img{

    width:100%;

    display:block;

    transition:.5s;

}

.product-card:hover img{

    transform:scale(1.06);

}

/*==========================================
BADGE
==========================================*/

.product-badge{

    position:absolute;

    top:18px;
    left:18px;

    padding:6px 12px;

    border-radius:30px;

    background:#fff;

    font-size:11px;
    font-weight:600;

    letter-spacing:2px;

    z-index:5;

}

/*==========================================
HEART
==========================================*/

.wishlist-btn{

    position:absolute;

    top:16px;
    right:16px;

    width:42px;
    height:42px;

    border:none;

    border-radius:50%;

    background:#fff;

    cursor:pointer;

    display:flex;
    justify-content:center;
    align-items:center;

    z-index:5;

    transition:.3s;

}

.wishlist-btn:hover{

    background:var(--gold);

    color:#fff;

}

.wishlist-btn i{

    font-size:20px;

}

/*==========================================
INFO
==========================================*/

.product-info{

    padding:22px 8px 0;

    text-align:center;

}

.product-info h3{

    font-size:20px;

    margin-bottom:10px;

    color:var(--black);

}

.price{

    display:block;

    color:var(--gold);

    font-size:17px;

    font-weight:600;

}

/*==========================================
NEW ARRIVALS MOBILE
==========================================*/

@media (max-width:768px){

.new-arrivals{

    padding:80px 0;

}

/*==========================
HEADER
==========================*/

.arrivals-header{

    text-align:center;

    margin-bottom:40px;

}

.arrivals-header .section-title{

    font-size:38px;

    line-height:1.1;

}

.view-all{

    margin-top:18px;

    justify-content:center;

}

/*==========================
GRID
==========================*/

.arrivals-grid{

    grid-template-columns:repeat(2,1fr);

    gap:16px;

}

/*==========================
CARD
==========================*/

.product-card{

    border-radius:14px;

}

/*==========================
IMAGE
==========================*/

.product-image{

    border-radius:14px;

}

.product-image img{

    width:100%;
    display:block;

}

/*==========================
BADGE
==========================*/

.product-badge{

    top:12px;
    left:12px;

    padding:5px 10px;

    font-size:10px;

}

/*==========================
HEART
==========================*/

.wishlist-btn{

    top:10px;
    right:10px;

    width:36px;
    height:36px;

}

.wishlist-btn i{

    font-size:18px;

}

/*==========================
TEXT
==========================*/

.product-info{

    padding:16px 4px 0;

}

.product-info h3{

    font-size:17px;

    margin-bottom:6px;

}

.price{

    font-size:15px;

}

}

/*==========================================
LIMITED OFFER
==========================================*/

.limited-offer{

    padding:120px 0;

    background:linear-gradient(
135deg,
#faf8f4 0%,
#f2ede5 100%
);

}

.offer-wrapper{

    display:grid;
    grid-template-columns:1fr 1fr;

    align-items:center;

    overflow:hidden;

    border-radius:30px;

    background:#f8f5ef;

    box-shadow:0 20px 60px rgba(0,0,0,.08);

}

/*==========================================
LEFT
==========================================*/

.offer-content{

    padding:90px 70px;

}

.offer-subtitle{

    display:inline-block;

    font-size:13px;
    font-weight:600;

    letter-spacing:5px;
    text-transform:uppercase;

    color:var(--gold);

    margin-bottom:24px;

}

.offer-title{

    font-size:72px;

    line-height:.95;

    color:var(--black);

    margin-bottom:25px;

}

.offer-title span{

    color:var(--gold);

}

.offer-text{

    max-width:470px;

    font-size:18px;

    line-height:1.9;

    color:var(--gray);

    margin-bottom:45px;

}

.offer-content .btn{

    width:240px;
    height:60px;

    display:flex;
    justify-content:center;
    align-items:center;

}

/*==========================================
IMAGE
==========================================*/

.offer-image{

    position:relative;

    height:100%;

}

.offer-image img{

    width:100%;
    height:100%;

    object-fit:cover;

    display:block;

    transition:.5s;

}

.offer-wrapper:hover .offer-image img{

    transform:scale(1.05);

}

/*==========================================
BADGE
==========================================*/

.offer-badge{

    position:absolute;

    right:35px;
    bottom:35px;

    width:145px;
    height:145px;

    border-radius:50%;

    background:#111;

    border:2px solid var(--gold);

    color:#fff;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    text-align:center;

}

.offer-badge span{

    font-size:46px;

    font-weight:500;

    color:var(--gold);

    line-height:1;

}

.offer-badge small{

    margin-top:10px;

    font-size:13px;

    letter-spacing:2px;

    line-height:1.6;

    text-transform:uppercase;

}

/*==========================================
HOVER
==========================================*/

.offer-wrapper{

    transition:.4s;

}

.offer-wrapper:hover{

    transform:translateY(-6px);

    box-shadow:0 28px 70px rgba(0,0,0,.12);

}

/*==========================================
LIMITED OFFER MOBILE
==========================================*/

@media (max-width:768px){

.limited-offer{

    padding:80px 0;

}

.offer-wrapper{

    display:flex;
    flex-direction:column-reverse;

    border-radius:22px;

}

/*==========================
IMAGE
==========================*/

.offer-image{

    width:100%;
    height:340px;

}

.offer-image img{

    width:100%;
    height:100%;

    object-fit:cover;
    object-position:center;

}

/*==========================
BADGE
==========================*/

.offer-badge{

    display:none;

}

/*==========================
CONTENT
==========================*/

.offer-content{

    padding:40px 28px 45px;

    text-align:center;

}

.offer-subtitle{

    font-size:11px;

    letter-spacing:4px;

    margin-bottom:16px;

}

.offer-title{

    font-size:42px;

    line-height:1;

    margin-bottom:18px;

}

.offer-text{

    max-width:320px;

    margin:0 auto 30px;

    font-size:15px;

    line-height:1.8;

}

.offer-content .btn{

    width:100%;
    height:58px;

    margin:0 auto;

}

}

/*==========================================
SMALL PHONES
==========================================*/

@media (max-width:430px){

.offer-image{

    height:290px;

}

.offer-title{

    font-size:36px;

}

.offer-text{

    font-size:14px;

}

}

/*==========================================
NEWSLETTER
==========================================*/

.newsletter{

    padding:120px 0;

    background:#fff;

}

.newsletter-wrapper{

    display:grid;
    grid-template-columns:1fr 1fr;

    align-items:center;

    background:#F8F5EF;

    border-radius:32px;

    overflow:hidden;

    box-shadow:0 20px 60px rgba(0,0,0,.08);

}

/*==========================================
LEFT
==========================================*/

.newsletter-content{

    padding:80px 70px;

}

.newsletter-subtitle{

    display:block;

    font-size:13px;

    letter-spacing:5px;

    text-transform:uppercase;

    color:var(--gold);

    margin-bottom:20px;

}

.newsletter-line{

    width:95px;
    height:2px;

    background:var(--gold);

    margin-bottom:35px;

}

.newsletter-title{

    font-size:72px;

    line-height:.95;

    margin-bottom:30px;

    color:var(--black);

}

.newsletter-text{

    max-width:500px;

    font-size:18px;

    line-height:1.9;

    color:var(--gray);

    margin-bottom:45px;

}

/*==========================================
FORM
==========================================*/

.newsletter-form{

    display:flex;

    align-items:center;

    gap:0;

    margin-bottom:55px;

}

.newsletter-input{

    flex:1;

    height:72px;

    border:1px solid #d8cdb8;

    border-right:none;

    background:#fff;

    padding:0 25px;

    font-size:17px;

    outline:none;

}

.newsletter-input::placeholder{

    color:#888;

}

.newsletter-btn{

    width:220px;

    height:72px;

    background:#111;

    color:#fff;

    border:none;

    cursor:pointer;

    font-size:15px;

    letter-spacing:2px;

    text-transform:uppercase;

    transition:.35s;

}

.newsletter-btn:hover{

    background:var(--gold);

    color:#111;

}

/*==========================================
FEATURES
==========================================*/

.newsletter-features{

    display:flex;

    justify-content:space-between;

    gap:30px;

}

.news-item{

    display:flex;

    flex-direction:column;

    align-items:center;

    flex:1;

    text-align:center;

}

.news-icon{

    width:50px;
    height:50px;

    border:1px solid var(--gold);

    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    color:var(--gold);

    font-size:18px;

    margin-bottom:18px;

}

.news-item span{

    font-size:13px;

    letter-spacing:2px;

    text-transform:uppercase;

}

/*==========================================
RIGHT IMAGE
==========================================*/

.newsletter-image{

    height:100%;

}

.newsletter-image img{

    width:100%;
    height:100%;

    object-fit:cover;

    display:block;

    transition:.5s;

}

.newsletter-wrapper:hover .newsletter-image img{

    transform:scale(1.05);

}

/*==========================================
NEWSLETTER MOBILE
==========================================*/

@media (max-width:768px){

.newsletter{

    padding:80px 0;

}

.newsletter-wrapper{

    display:flex;
    flex-direction:column-reverse;

    border-radius:24px;

}

.newsletter-image{

    width:100%;
    height:360px;

}

.newsletter-image img{

    width:100%;
    height:100%;

    object-fit:cover;
    object-position:center;

}

.newsletter-content{

    padding:40px 28px;

    text-align:center;

}

.newsletter-line{

    margin:0 auto 25px;

}

.newsletter-subtitle{

    font-size:11px;

    letter-spacing:4px;

}

.newsletter-title{

    font-size:42px;

    line-height:1;

    margin-bottom:18px;

}

.newsletter-text{

    max-width:320px;

    margin:0 auto 35px;

    font-size:15px;

    line-height:1.8;

}

/*==========================
FORM
==========================*/

.newsletter-form{

    display:flex;

    flex-direction:column;

    gap:15px;

    margin-bottom:35px;

}

.newsletter-input{

    width:100%;

    height:60px;

    border:1px solid #d8cdb8;

}

.newsletter-btn{

    width:100%;

    height:60px;

}

/*==========================
FEATURES
==========================*/

.newsletter-features{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:20px;

}

.news-icon{

    width:46px;
    height:46px;

    margin:0 auto 12px;

}

.news-item span{

    font-size:11px;

    letter-spacing:1px;

    line-height:1.6;

}

}

/*==========================================
SMALL PHONES
==========================================*/

@media (max-width:430px){

.newsletter-image{

    height:300px;

}

.newsletter-title{

    font-size:34px;

}

.newsletter-features{

    gap:15px;

}

.news-item span{

    font-size:10px;

}

}

/*==========================================
FOOTER
==========================================*/

.footer{

    background:#F8F5EF;
    padding:110px 0 45px;
    border-top:1px solid #E8DDC7;
    box-shadow:
0 20px 45px rgba(0,0,0,.10);
}

.footer .container{

    max-width:1400px;

}

/*==========================================
BRAND
==========================================*/

.footer-brand{

    text-align:center;

    margin-bottom:70px;

}

.footer-brand h2{

    font-size:72px;

    font-weight:500;

    letter-spacing:10px;

    color:#111;

    margin-bottom:15px;

}

.footer-brand p{

    font-size:13px;

    letter-spacing:6px;

    text-transform:uppercase;

    color:var(--gold);

}

.footer-line{

    width:90px;

    height:2px;

    background:var(--gold);

    margin:30px auto 0;

}

/*==========================================
LINKS
==========================================*/

.footer-links{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:90px;

    padding:60px 0;

    border-top:1px solid #E8DDC7;

    border-bottom:1px solid #E8DDC7;

}

.footer-column{

    display:flex;

    flex-direction:column;

}

.footer-heading{

    background:none;

    border:none;

    padding:0;

    margin-bottom:28px;

    font-size:18px;

    font-weight:600;

    letter-spacing:3px;

    color:#111;

    cursor:default;

}

.footer-toggle{

    display:none;

}

.footer-menu{

    list-style:none;

}

.footer-menu li{

    margin-bottom:18px;

}

.footer-menu a{

    text-decoration:none;

    color:#6F6F6F;

    font-size:17px;

    transition:.35s;

}

.footer-menu a:hover{

    color:var(--gold);

    padding-left:8px;

}

/*==========================================
SOCIAL
==========================================*/

.footer-social{

    display:flex;

    justify-content:center;

    gap:22px;

    padding:50px 0;

}

.footer-social a{

    width:56px;

    height:56px;

    border:1px solid #D8CDB8;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    color:#111;

    font-size:20px;

    text-decoration:none;

    transition:.35s;

}

.footer-social a:hover{

    background:#111;

    color:#fff;

    border-color:#111;

    transform:translateY(-5px);

}

/*==========================================
BOTTOM
==========================================*/

.footer-bottom{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding-top:35px;

    border-top:1px solid #E8DDC7;

}

.copyright{

    font-size:15px;

    color:#777;

}

.signature{

    font-size:15px;

    color:#777;

    font-style:italic;

}

/*==========================================
HOVER
==========================================*/

.footer-menu a{

    position:relative;

}

.footer-menu a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-3px;

    width:0;

    height:1px;

    background:var(--gold);

    transition:.35s;

}

.footer-menu a:hover::after{

    width:100%;

}

/*==========================================
FOOTER MOBILE
==========================================*/

@media (max-width:768px){

.footer{

    padding:80px 0 35px;

}

.footer-brand{

    margin-bottom:45px;

}

.footer-brand h2{

    font-size:42px;

    letter-spacing:6px;

}

.footer-brand p{

    font-size:11px;

    letter-spacing:4px;

}

.footer-line{

    margin:22px auto 0;

}

/*==========================================
LINKS
==========================================*/

.footer-links{

    display:block;

    padding:25px 0;

    border-top:1px solid #E8DDC7;

    border-bottom:1px solid #E8DDC7;

}

.footer-column{

    border-bottom:1px solid #E8DDC7;

    padding:20px 0;

}

.footer-column:last-child{

    border-bottom:none;

}

.footer-heading{

    width:100%;

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin:0;

    font-size:15px;

    letter-spacing:2px;

    cursor:pointer;

}

.footer-toggle{

    display:block;

    font-size:22px;

    color:var(--gold);

    transition:.3s;

}

/* Accordion */

.footer-menu{

    display:none;

    padding-top:18px;

}

.footer-column.active .footer-menu{

    display:block;

}

.footer-column.active .footer-toggle{

    transform:rotate(45deg);

}

.footer-menu li{

    margin-bottom:14px;

}

.footer-menu a{

    font-size:15px;

    color:#666;

}

/*==========================================
SOCIAL
==========================================*/

.footer-social{

    justify-content:center;

    gap:15px;

    padding:35px 0;

}

.footer-social a{

    width:48px;

    height:48px;

    font-size:18px;

}

/*==========================================
BOTTOM
==========================================*/

.footer-bottom{

    display:block;

    text-align:center;

    padding-top:25px;

}

.copyright{

    margin-bottom:8px;

    font-size:13px;

}

.signature{

    font-size:13px;

}

}

/*==========================================
SMALL PHONES
==========================================*/

@media (max-width:430px){

.footer-brand h2{

    font-size:34px;

}

.footer-social{

    gap:12px;

}

.footer-social a{

    width:44px;

    height:44px;

    font-size:16px;

}

.footer-heading{

    font-size:14px;

}

.footer-menu a{

    font-size:14px;

}

}

/*=========================================
REVIEWS SECTION
=========================================*/

.reviews-section{

padding:120px 0;

background:#f8f7f5;

}

.reviews-section .container{

width:min(1200px,90%);

margin:auto;

text-align:center;

}

.section-subtitle{

display:block;

font-size:12px;

letter-spacing:4px;

text-transform:uppercase;

color:#b68d40;

margin-bottom:18px;

}

.section-title{

font-size:48px;

font-family:"Cormorant Garamond",serif;

font-weight:600;

margin-bottom:15px;

color:#111;

}

.section-text{

font-size:17px;

color:#777;

margin-bottom:70px;

}

/*=========================================
SLIDER
=========================================*/

.reviews-slider{

display:flex;

align-items:center;

justify-content:center;

gap:50px;

margin-bottom:70px;

}

.review-track{

width:620px;

min-height:240px;

display:flex;

justify-content:center;

align-items:center;

overflow:hidden;

position:relative;

}

/*=========================================
CARD
=========================================*/

.review-card{

background:#fff;

padding:50px;

border-radius:25px;

box-shadow:0 15px 40px rgba(0,0,0,.08);

width:100%;

animation:fade .4s ease;

}

.review-stars{

color:#d4af37;

font-size:20px;

margin-bottom:25px;

}

.review-text{

font-size:18px;

line-height:1.8;

color:#444;

margin-bottom:35px;

}

.review-name{

font-size:22px;

font-weight:700;

margin-bottom:8px;

}

.review-status{

font-size:14px;

color:#999;

}

/*=========================================
ARROWS
=========================================*/

.review-arrow{

width:60px;

height:60px;

border:none;

border-radius:50%;

background:#111;

color:#fff;

cursor:pointer;

font-size:18px;

transition:.3s;

}

.review-arrow:hover{

background:#b68d40;

transform:scale(1.08);

}

/*=========================================
FORM
=========================================*/

.review-form{

width:560px;

margin:auto;

background:#fff;

padding:45px;

border-radius:25px;

box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.review-form h3{

font-family:"Cormorant Garamond",serif;

font-size:40px;

margin-bottom:35px;

}

.review-form form{

display:flex;

flex-direction:column;

gap:18px;

}

.review-form input,

.review-form textarea,

.review-form select{

padding:18px;

border:1px solid #ddd;

border-radius:12px;

font-size:16px;

font-family:inherit;

outline:none;

transition:.3s;

}

.review-form textarea{

resize:none;

height:170px;

}

.review-form input:focus,

.review-form textarea:focus,

.review-form select:focus{

border-color:#b68d40;

}

.review-form button{

padding:18px;

border:none;

border-radius:12px;

background:#111;

color:#fff;

font-size:16px;

font-weight:600;

cursor:pointer;

transition:.3s;

}

.review-form button:hover{

background:#b68d40;

}

/*=========================================
ANIMATION
=========================================*/

@keyframes fade{

from{

opacity:0;

transform:translateY(15px);

}

to{

opacity:1;

transform:translateY(0);

}

}

/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:992px){

.reviews-slider{

gap:20px;

}

.review-track{

width:100%;

}

.review-form{

width:100%;

}

}

@media(max-width:768px){

.section-title{

font-size:38px;

}

.review-card{

padding:35px;

}

.review-arrow{

width:50px;

height:50px;

}

.review-form{

padding:30px;

}

.review-form h3{

font-size:30px;

}

}