/* ===========================================
   STYLE.CSS — PART 1
   RESET + NAVBAR + HERO
=========================================== */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{
font-family:'Inter',sans-serif;
background:#050505;
color:#fff;
overflow-x:hidden;
line-height:1.6;
}

img{
display:block;
max-width:100%;
}

a{
text-decoration:none;
color:inherit;
}

ul{
list-style:none;
}

.container{
width:min(1240px,92%);
margin:auto;
}

/* ===========================================
HEADER
=========================================== */



.hero h2{
    font-family: "Canela", serif;
    font-size:43px;
    font-weight:400;
    line-height:1.05;
    letter-spacing:-0.02em;
}

header{
position:absolute;
top:0;
left:0;
width:100%;
z-index:50;
padding:24px 0;
}

nav{
display:flex;
align-items:center;
justify-content:space-between;
}

.logo img{
height:72px;
}

nav ul{
display:flex;
align-items:center;
gap:36px;
}

nav ul li a{

font-size:13px;
font-weight:500;
letter-spacing:2px;
color:#ddd;
transition:.35s;

}

nav ul li a:hover,
nav ul li .active{

color:#d7b46a;

}

.appointment-btn{

padding:14px 30px;
border:1px solid #d7b46a;
border-radius:999px;
font-size:13px;
letter-spacing:2px;
font-weight:600;
color:#d7b46a;
transition:.35s;

}

.appointment-btn:hover{

background:#d7b46a;
color:#111;

}

/* ===========================================
HERO
=========================================== */

.hero{

position:relative;
min-height:980px;
display:flex;
align-items:center;
background:
linear-gradient(rgba(0,0,0,.75),rgba(0,0,0,.82)),
url("assets/img/bg.jpg") center/cover;

overflow:hidden;

}

.overlay{

position:absolute;
inset:0;
background:
radial-gradient(circle at right,
rgba(215,180,106,.18),
transparent 45%);

}

.hero-grid{

display:grid;
grid-template-columns:1fr 620px;
gap:40px;
align-items:center;
position:relative;
z-index:2;

}

.hero-content{

max-width:620px;

}

.hero h1{

font-family:'Cormorant Garamond',serif;
font-size:82px;
font-weight:700;
line-height:1.02;
margin-bottom:30px;
    color: #f0d080;

}

.hero p{

font-size:19px;
color:#d4d4d4;
max-width:560px;
margin-bottom:45px;

}

.hero-buttons{

display:flex;
gap:20px;
margin-bottom:50px;

}

.gold-btn{

display:inline-flex;
justify-content:center;
align-items:center;

padding:18px 38px;

border-radius:60px;

background:
linear-gradient(180deg,
#f6d98c,
#d4a74b);

color:#111;

font-size:14px;
font-weight:700;
letter-spacing:2px;

transition:.35s;

box-shadow:
0 12px 35px rgba(212,167,75,.35);

}

.gold-btn:hover{

transform:translateY(-4px);

box-shadow:
0 18px 45px rgba(212,167,75,.45);

}

.outline-btn{

display:inline-flex;
align-items:center;
justify-content:center;

padding:18px 38px;

border-radius:60px;

border:1px solid #caa254;

color:#d7b46a;

font-size:14px;

font-weight:600;

letter-spacing:2px;

transition:.35s;

}

.outline-btn:hover{

background:#d7b46a;

color:#111;

}

.guarantee{

display:flex;
align-items:center;
gap:16px;

margin-top:10px;

}

.shield{

width:56px;
height:56px;

display:flex;
align-items:center;
justify-content:center;

border-radius:50%;

background:rgba(212,167,75,.1);

border:1px solid rgba(212,167,75,.4);

}

.shield img{

width:28px;

}

.guarantee p{

margin:0;
font-size:15px;
color:#e8e8e8;

}

.hero-image{

display:flex;
justify-content:center;
align-items:center;

position:relative;

}

.hero-image img{

width:100%;
max-width:620px;

filter:

drop-shadow(0 60px 100px rgba(0,0,0,.65))
drop-shadow(0 0 60px rgba(212,167,75,.18));

animation:float 5s ease-in-out infinite;

}

@keyframes float{

0%{
transform:translateY(0);
}

50%{
transform:translateY(-15px);
}

100%{
transform:translateY(0);
}

}

/* decorative glow */

.hero::after{

content:"";

position:absolute;

right:-180px;
top:120px;

width:700px;
height:700px;

border-radius:50%;

background:
radial-gradient(circle,
rgba(212,167,75,.18),
transparent 70%);

filter:blur(60px);

}

/* ===========================================
FEATURES
=========================================== */

.features{

padding:90px 0;

background:#090909;

border-top:1px solid rgba(255,255,255,.05);

border-bottom:1px solid rgba(255,255,255,.05);

}

.features .container{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:30px;

}

.feature{

display:flex;

align-items:flex-start;

gap:18px;

padding:25px;

border:1px solid rgba(212,167,75,.18);

background:#101010;

border-radius:18px;

transition:.35s;

}

.feature:hover{

transform:translateY(-6px);

border-color:#d4a74b;

box-shadow:0 20px 45px rgba(0,0,0,.45);

}

.feature img{

width:48px;

}

.feature h3{

font-size:16px;

letter-spacing:2px;

margin-bottom:10px;

color:#d7b46a;

}

.feature p{

font-size:14px;

color:#bfbfbf;

line-height:1.8;

}
/* ===========================================
STYLE.CSS — PART 2
VERIFY + COLLECTIONS
=========================================== */

.verify{
padding:120px 0;
background:#050505;
position:relative;
overflow:hidden;
}

.verify::before{
content:"";
position:absolute;
left:-200px;
top:-120px;
width:500px;
height:500px;
background:radial-gradient(circle,rgba(212,167,75,.12),transparent 70%);
filter:blur(60px);
}

.verify-grid{
display:grid;
grid-template-columns:1fr 520px;
gap:70px;
align-items:center;
position:relative;
z-index:2;
}

.verify-left h2{
font-family:'Cormorant Garamond',serif;
font-size:62px;
margin-bottom:18px;
}

.line{
width:110px;
height:3px;
background:#d4a74b;
margin-bottom:30px;
}

.verify-left p{
font-size:18px;
color:#cfcfcf;
max-width:520px;
line-height:1.8;
margin-bottom:40px;
}

.verify-form{
display:flex;
gap:18px;
}

.verify-form input{
flex:1;
height:64px;
padding:0 24px;
border-radius:50px;
background:#111;
border:1px solid rgba(212,167,75,.25);
color:#fff;
font-size:16px;
outline:none;
}

.verify-form input:focus{
border-color:#d4a74b;
}

.verify-form button{
height:64px;
padding:0 38px;
border:none;
cursor:pointer;
border-radius:50px;
background:linear-gradient(#f6d98c,#d4a74b);
font-weight:700;
letter-spacing:2px;
}

.verify-card{
background:#111;
border:1px solid rgba(212,167,75,.25);
border-radius:26px;
padding:40px;
position:relative;
box-shadow:0 25px 60px rgba(0,0,0,.55);
}

.badge{
position:absolute;
right:-35px;
top:-35px;
width:90px;
}

.product-info{
display:flex;
flex-direction:column;
gap:22px;
}

.product-info span{
font-size:12px;
letter-spacing:2px;
color:#9c9c9c;
}

.product-info h4{
font-size:24px;
font-weight:600;
}

.green{
color:#58d468;
font-size:34px;
letter-spacing:2px;
}

.product-info p{
color:#cfcfcf;
line-height:1.8;
}

.signature{
width:180px;
margin-top:12px;
opacity:.9;
}

.coin{
position:absolute;
left:-80px;
bottom:-80px;
width:180px;
opacity:.18;
}

/* ===========================================
COLLECTIONS
=========================================== */

.collections{
padding:120px 0;
background:#090909;
}

.collections h2{
text-align:center;
font-family:'Cormorant Garamond',serif;
font-size:62px;
margin-bottom:18px;
}

.divider{
width:100px;
height:3px;
background:#d4a74b;
margin:0 auto 70px;
}

.products{
display:grid;
grid-template-columns:repeat(5,1fr);
gap:30px;
}

.product{
background:#111;
border-radius:22px;
overflow:hidden;
border:1px solid rgba(212,167,75,.18);
transition:.35s;
}

.product:hover{
transform:translateY(-10px);
border-color:#d4a74b;
box-shadow:0 25px 60px rgba(0,0,0,.55);
}

.product img{
width:100%;
height:280px;
object-fit:cover;
}

.product h3{
padding:22px 22px 6px;
font-size:22px;
font-family:'Cormorant Garamond',serif;
}

.product p{
padding:0 22px;
font-size:15px;
color:#bcbcbc;
}

.product span{
display:block;
padding:18px 22px 26px;
font-size:20px;
font-weight:700;
color:#d4a74b;
}

.center{
margin-top:60px;
display:flex;
justify-content:center;
}

/* ===========================================
STYLE.CSS — PART 3
STORE + FOOTER + RESPONSIVE
=========================================== */

.store{
padding:120px 0;
background:#050505;
position:relative;
overflow:hidden;
}

.store::before{
content:"";
position:absolute;
right:-220px;
top:-100px;
width:600px;
height:600px;
border-radius:50%;
background:radial-gradient(circle,rgba(212,167,75,.12),transparent 70%);
filter:blur(80px);
}

.store-grid{
display:grid;
grid-template-columns:1.1fr .9fr 1fr;
gap:50px;
align-items:center;
position:relative;
z-index:2;
}

.store-image img{
width:100%;
height:520px;
object-fit:cover;
border-radius:24px;
border:1px solid rgba(212,167,75,.2);
}

.store-info h2{
font-family:'Cormorant Garamond',serif;
font-size:58px;
line-height:1.1;
margin-bottom:28px;
}

.store-info p{
font-size:18px;
line-height:1.9;
color:#cfcfcf;
margin-bottom:26px;
}

.store-info .gold-btn{
margin-top:12px;
}

.map{
display:flex;
flex-direction:column;
gap:25px;
}

.map img{
width:100%;
height:520px;
object-fit:cover;
border-radius:24px;
border:1px solid rgba(212,167,75,.2);
}

/* ===========================================
FOOTER
=========================================== */

footer{
background:#090909;
padding:70px 0;
border-top:1px solid rgba(212,167,75,.12);
}

.footer{
display:flex;
align-items:center;
justify-content:space-between;
gap:30px;
}

.footer img{
height:70px;
}

.footer p{
font-size:15px;
color:#999;
}

.social{
display:flex;
gap:18px;
}

.social a{
width:46px;
height:46px;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
border:1px solid rgba(212,167,75,.25);
transition:.35s;
}

.social a:hover{
background:#d4a74b;
transform:translateY(-4px);
}

.social img{
width:18px;
height:18px;
filter:brightness(0) invert(1);
}

.social a:hover img{
filter:none;
}

/* ===========================================
SCROLLBAR
=========================================== */

::-webkit-scrollbar{
width:10px;
}

::-webkit-scrollbar-track{
background:#090909;
}

::-webkit-scrollbar-thumb{
background:#d4a74b;
border-radius:30px;
}

::-webkit-scrollbar-thumb:hover{
background:#f2cf77;
}

/* ===========================================
RESPONSIVE
=========================================== */

@media(max-width:1200px){

.products{
grid-template-columns:repeat(3,1fr);
}

.store-grid{
grid-template-columns:1fr;
}

.hero-grid{
grid-template-columns:1fr;
text-align:center;
}

.hero-content{
margin:auto;
}

.hero-buttons{
justify-content:center;
}

.guarantee{
justify-content:center;
}

.hero-image{
margin-top:70px;
}

.verify-grid{
grid-template-columns:1fr;
}

.features .container{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

nav{
flex-direction:column;
gap:25px;
}

nav ul{
flex-wrap:wrap;
justify-content:center;
gap:20px;
}

.hero{
padding:180px 0 120px;
min-height:auto;
}

.hero h1{
font-size:56px;
}

.hero p{
font-size:17px;
}

.hero-buttons{
flex-direction:column;
}

.verify-left h2,
.collections h2,
.store-info h2{
font-size:42px;
}

.products{
grid-template-columns:1fr;
}

.features .container{
grid-template-columns:1fr;
}

.verify-form{
flex-direction:column;
}

.footer{
flex-direction:column;
text-align:center;
}

.store-image img,
.map img{
height:350px;
}

}

@media(max-width:480px){

.container{
width:94%;
}

.hero h1{
font-size:42px;
}

.gold-btn,
.outline-btn,
.appointment-btn{
width:100%;
}

.logo img{
height:60px;
}

.verify-card{
padding:28px;
}

.badge{
display:none;
}

.green{
font-size:26px;
}

.store-info h2{
font-size:36px;
}

.collections{
padding:90px 0;
}

.store{
padding:90px 0;
}

.verify{
padding:90px 0;
}

.features{
padding:70px 0;
}

}

/*=========================
ABOUT
=========================*/

.about{
    padding:0px 0;
    background:#090909;
}

.section-title{
    text-align:center;
    margin-bottom:70px;
}

.section-title span{
    color:#d4af37;
    font-size:14px;
    letter-spacing:4px;
    font-weight:600;
}

.section-title h2{
    font-family:"GFS Didot",serif;
    font-size:58px;
    color:#fff;
    margin:18px 0;
}

.about-grid{
    display:grid;
    grid-template-columns:1.4fr .8fr;
    gap:60px;
    align-items:center;
}

.about-content h3{
    font-size:34px;
    color:#d4af37;
    margin-bottom:20px;
    font-family:"GFS Didot",serif;
}

.about-content>p{
    color:#c8c8c8;
    line-height:1.9;
    margin-bottom:45px;
}

.about-info{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.info-card{
    background:#111;
    padding:30px;
    border:1px solid rgba(212,175,55,.18);
    border-radius:20px;
    transition:.35s;
}

.info-card:hover{
    transform:translateY(-8px);
    border-color:#d4af37;
}

.info-card h4{
    color:#d4af37;
    margin-bottom:15px;
    font-size:22px;
}

.info-card p{
    color:#bbb;
    line-height:1.8;
}

.about-stats{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.stat-card{
    background:#111;
    border:1px solid rgba(212,175,55,.18);
    border-radius:22px;
    padding:35px;
    text-align:center;
    transition:.35s;
}

.stat-card:hover{
    transform:translateY(-8px);
    border-color:#d4af37;
    box-shadow:0 20px 40px rgba(0,0,0,.4);
}

.stat-card h2{
    font-size:52px;
    color:#d4af37;
    margin-bottom:12px;
    font-family:"GFS Didot",serif;
}

.stat-card span{
    color:#ddd;
    font-size:15px;
    letter-spacing:1px;
}

@media(max-width:992px){

.about-grid{
    grid-template-columns:1fr;
}

.about-info{
    grid-template-columns:1fr;
}

.about-stats{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:576px){

.section-title h2{
    font-size:42px;
}

.about-stats{
    grid-template-columns:1fr;
}

.stat-card h2{
    font-size:42px;
}

}

.top-gold-line{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:5px;
    z-index:9999;
}

.top-gold-line::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:2px;
    background:linear-gradient(
        90deg,
        transparent,
        #9a7222 10%,
        #f7dd88 50%,
        #9a7222 90%,
        transparent
    );
}

.top-gold-line::after{
    content:"";
    position:absolute;
    top:3px;
    left:0;
    width:100%;
    height:1px;
    background:rgba(255,225,150,.35);
}

.top-divider{
    width:100%;
    height:1px;
    margin:0 0 70px;

    background:linear-gradient(
        90deg,
        transparent 0%,
        rgba(212,175,55,.15) 10%,
        #d4af37 50%,
        rgba(212,175,55,.15) 90%,
        transparent 100%
    );
}