:root{
--bg:#f5efe4;
--paper:#fffdf8;
--ink:#33251d;
--muted:#82766d;
--gold:#aa8350;
--line:rgba(64,43,30,.13);
--dark:#302119;
}

*{
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{
margin:0;
background:var(--bg);
color:var(--ink);
font-family:"DM Sans",sans-serif;
}

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

.wrap{
width:min(1180px,calc(100% - 34px));
margin:auto;
}

.top-note{
background:var(--dark);
color:#eee3d8;
text-align:center;
padding:9px;
font-size:10px;
letter-spacing:2px;
}

nav{
position:sticky;
top:0;
z-index:20;
background:rgba(245,239,228,.9);
backdrop-filter:blur(16px);
border-bottom:1px solid var(--line);
}

.nav{
height:76px;
display:flex;
align-items:center;
justify-content:space-between;
}

.brand{
display:flex;
align-items:center;
gap:11px;
}

.brandmark{
width:40px;
height:40px;
border:1px solid var(--gold);
border-radius:50%;
display:grid;
place-items:center;
font:600 21px "Playfair Display";
}

.brand b{
display:block;
font:600 20px "Playfair Display";
}

.brand small{
display:block;
font-size:8px;
letter-spacing:2px;
margin-top:3px;
color:var(--muted);
}

.navlinks{
display:flex;
gap:28px;
font-size:12px;
font-weight:600;
}

.pill{
display:inline-flex;
min-height:45px;
padding:0 21px;
align-items:center;
justify-content:center;
border-radius:999px;
font-size:12px;
font-weight:700;
}

.dark{
background:var(--dark);
color:white;
}

.line{
border:1px solid var(--line);
background:rgba(255,255,255,.3);
}

.light{
background:#f3e8d7;
color:var(--dark);
}

.hero{
padding:90px 0 95px;
overflow:hidden;
}

.hero-grid{
display:grid;
grid-template-columns:1.15fr .85fr;
align-items:center;
gap:70px;
}

.kicker,
.heading small,
.story small{
color:var(--gold);
font-size:10px;
letter-spacing:2.4px;
font-weight:700;
}

.hero h1{
font:500 clamp(49px,6.2vw,82px)/1.02 "Playfair Display";
margin:18px 0 24px;
}

.hero h1 em{
color:var(--gold);
font-weight:500;
}

.hero p{
max-width:600px;
color:var(--muted);
line-height:1.9;
font-size:14px;
}

.actions{
display:flex;
gap:11px;
margin-top:30px;
}

.hero-art{
height:440px;
position:relative;
}

.arch{
height:420px;
width:75%;
margin-left:auto;
border:1px solid rgba(170,131,80,.4);
border-radius:190px 190px 18px 18px;
background:linear-gradient(145deg,#e9ddca,#d9c5a8);
display:grid;
place-items:center;
text-align:center;
box-shadow:0 25px 70px rgba(63,43,30,.12);
}

.letter{
font:500 130px "Playfair Display";
color:rgba(65,44,31,.72);
line-height:.7;
}

.arch span{
position:absolute;
font:600 11px/1.7 "DM Sans";
letter-spacing:4px;
bottom:65px;
}

.seal{
position:absolute;
left:8%;
bottom:5px;
width:105px;
height:105px;
border-radius:50%;
display:grid;
place-items:center;
text-align:center;
background:var(--dark);
color:white;
font:500 12px/1.5 "Playfair Display";
border:8px solid var(--bg);
}

.trust{
background:var(--paper);
border-block:1px solid var(--line);
}

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

.trust-grid div{
text-align:center;
padding:27px;
border-right:1px solid var(--line);
}

.trust-grid div:last-child{
border:0;
}

.trust b{
font:600 17px "Playfair Display";
display:block;
}

.trust span{
font-size:11px;
color:var(--muted);
display:block;
margin-top:6px;
}

.section{
padding:95px 0;
}

.heading{
display:flex;
align-items:end;
justify-content:space-between;
gap:30px;
margin-bottom:34px;
}

.heading h2{
font:500 43px "Playfair Display";
margin:8px 0;
}

.heading p{
color:var(--muted);
font-size:11px;
margin:0;
}

.search{
width:280px;
height:44px;
border:1px solid var(--line);
border-radius:999px;
background:var(--paper);
display:flex;
align-items:center;
padding:0 15px;
gap:8px;
}

.search input{
border:0;
outline:0;
background:none;
width:100%;
font:12px "DM Sans";
}

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

.card{
background:var(--paper);
border:1px solid var(--line);
border-radius:20px;
overflow:hidden;
transition:.25s;
}

.card:hover{
transform:translateY(-5px);
box-shadow:0 18px 45px rgba(60,40,28,.09);
}

.photo{
aspect-ratio:1/1;
background:#e8ded0;
overflow:hidden;
position:relative;
display:block;
}

.photo img{
width:100%;
height:100%;
object-fit:cover;
transition:.4s;
}

.card:hover img{
transform:scale(1.035);
}

.no-photo{
width:100%;
height:100%;
display:grid;
place-items:center;
font:500 70px "Playfair Display";
color:#b59a78;
}

.discount{
position:absolute;
top:11px;
left:11px;
background:rgba(255,253,248,.94);
padding:6px 9px;
border-radius:999px;
font-size:9px;
font-weight:700;
}

.cardbody{
padding:16px;
}

.cardbody h3{
font:600 17px/1.3 "Playfair Display";
margin:0 0 10px;
display:-webkit-box;
-webkit-line-clamp:2;
-webkit-box-orient:vertical;
overflow:hidden;
min-height:44px;
}

.meta{
font-size:9px;
color:var(--muted);
margin-bottom:14px;
}

.bottom{
display:flex;
align-items:end;
justify-content:space-between;
gap:8px;
}

.price small{
font-size:8px;
color:var(--muted);
display:block;
}

.price b{
font-size:13px;
}

.price b span{
font-weight:500;
}

.go{
width:36px;
height:36px;
flex:0 0 36px;
border-radius:50%;
display:grid;
place-items:center;
background:var(--dark);
color:white;
}

.empty{
padding:70px 20px;
text-align:center;
background:rgba(255,255,255,.35);
border:1px solid var(--line);
border-radius:24px;
}

.empty-icon{
width:70px;
height:70px;
margin:0 auto 15px;
display:grid;
place-items:center;
border:1px solid var(--gold);
border-radius:50%;
font:500 30px "Playfair Display";
}

.empty h3{
font:600 25px "Playfair Display";
margin:0;
}

.empty p{
font-size:12px;
color:var(--muted);
}

.story{
background:var(--dark);
color:white;
padding:90px 0;
}

.story-grid{
display:grid;
grid-template-columns:.7fr 1.3fr;
gap:80px;
align-items:center;
}

.story-number{
height:330px;
border:1px solid rgba(255,255,255,.14);
border-radius:170px 170px 15px 15px;
display:grid;
place-items:center;
font:500 130px "Playfair Display";
color:#b48b59;
}

.story h2{
font:500 44px "Playfair Display";
margin:12px 0;
}

.story p{
color:#c8bbb1;
line-height:1.9;
font-size:13px;
max-width:620px;
margin-bottom:27px;
}

footer{
background:#241812;
color:#aa9b90;
padding:35px 0;
}

.footer{
display:flex;
justify-content:space-between;
align-items:center;
font-size:10px;
}

.footer b{
display:block;
color:white;
font:600 19px "Playfair Display";
}

.footer div span{
display:block;
margin-top:4px;
}

@media(max-width:900px){

.navlinks{
display:none;
}

.hero-grid,
.story-grid{
grid-template-columns:1fr;
}

.hero-art{
max-width:550px;
}

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

}

@media(max-width:560px){

.hero{
padding:58px 0;
}

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

.actions{
flex-direction:column;
}

.hero-art{
height:340px;
}

.arch{
height:330px;
}

.letter{
font-size:95px;
}

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

.trust-grid div{
border-right:0;
border-bottom:1px solid var(--line);
}

.heading{
display:block;
}

.search{
width:100%;
margin-top:20px;
}

.section{
padding:65px 0;
}

.products{
gap:10px;
}

.card{
border-radius:14px;
}

.cardbody{
padding:12px;
}

.cardbody h3{
font-size:14px;
min-height:37px;
}

.price b{
font-size:11px;
}

.story-number{
height:260px;
}

.story h2{
font-size:36px;
}

.footer{
gap:20px;
align-items:end;
}

}
