:root{--bg:#fbf6ef;--ink:#171513;--muted:#6f6b66;--brand:#E9532C;--line:#eadfce;--r:18px}
*{box-sizing:border-box}html,body{margin:0;background:var(--bg);color:var(--ink);font-family:Inter,system-ui,-apple-system,Segoe UI,Arial,sans-serif}
a{color:inherit;text-decoration:none}.container{width:min(1200px,92%);margin:0 auto}
header{position:sticky;top:0;background:rgba(251,246,239,.9);backdrop-filter:blur(8px);border-bottom:1px solid var(--line);z-index:50}
.nav{display:flex;align-items:center;justify-content:space-between;padding:16px 0}
.brand{display:flex;gap:16px;align-items:center}
.brand img{width:84px;height:84px;border-radius:50%;border:2px solid #111;background:#fff;object-fit:cover}
.brand .name{font-weight:900;font-size:1.25rem;line-height:1.1}
.links a{margin-left:18px;font-weight:800}
.btn{display:inline-block;background:var(--brand);color:#fff;padding:12px 18px;border:2px solid #111;border-radius:999px;font-weight:900}
.hero{padding:42px 0}
.hero .wrap{display:grid;grid-template-columns:1.05fr .95fr;gap:32px;align-items:center}
.hero h1{font-size:clamp(36px,6vw,62px);line-height:1.02;margin:.2rem 0}
.hero p{color:var(--muted);font-size:18px}
.hero .pic{border:2px solid #111;border-radius:var(--r);overflow:hidden}
.section{padding:42px 0}
.section h2{font-size:clamp(24px,3.2vw,36px);margin:0 0 16px}
.grid{display:grid;gap:18px;grid-template-columns:repeat(1,1fr)}
@media(min-width:760px){.grid{grid-template-columns:repeat(2,1fr)}}
@media(min-width:1120px){.grid{grid-template-columns:repeat(3,1fr)}}
.card{border:2px solid #111;border-radius:var(--r);overflow:hidden;background:#fff;display:flex;flex-direction:column;box-shadow:0 8px 0 #111;transform:translateY(0);transition:transform .25s ease, box-shadow .25s ease}
.figure{position:relative;aspect-ratio:4/3;overflow:hidden}
.figure img{width:100%;height:100%;object-fit:cover;transition:transform .5s ease}
.card:hover{transform:translateY(-2px);box-shadow:0 10px 0 #111}
.card:hover .figure img{transform:scale(1.05)}
.body{padding:14px;display:flex;flex-direction:column;gap:6px}
.row{display:flex;justify-content:space-between;gap:8px;align-items:center}
.price{font-weight:900;background:#fff;border:2px solid #111;border-radius:999px;padding:4px 10px}
.small{color:var(--muted)}
footer{border-top:1px solid #eadfce;padding:40px 0 70px;margin-top:30px}
.note{background:#fff6d8;border:2px dashed #111;border-radius:var(--r);padding:12px}
.fade{opacity:0;transform:translateY(8px);animation:fadeUp .65s ease forwards}
@keyframes fadeUp{to{opacity:1;transform:none}}
@media(max-width:760px){.hero .wrap{grid-template-columns:1fr}.brand img{width:72px;height:72px}}
