
:root{ --brand:#f2b705; --text:#222; --bg:#fff; --muted:#fafafa }
*{box-sizing:border-box}
html,body{margin:0;padding:0;font-family:system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,"Helvetica Neue",Arial,sans-serif;color:var(--text);background:var(--bg)}

.header{position:sticky;top:0;z-index:1000;background:var(--brand);box-shadow:0 2px 6px rgba(0,0,0,.08)}
.header-inner{display:flex;align-items:center;justify-content:space-between;max-width:1100px;margin:0 auto;padding:12px 16px}
.logo{display:flex;align-items:center;font-weight:800;font-size:22px}
.logo .paw{margin:0 8px}
.menu-btn{display:inline-flex;flex-direction:column;gap:4px;background:transparent;border:0;cursor:pointer}
.menu-btn span{display:block;width:22px;height:2px;background:#222;border-radius:2px}
.nav-panel{position:absolute;right:16px;top:56px;background:#fff;border-radius:12px;box-shadow:0 10px 30px rgba(0,0,0,.12);padding:10px 12px;display:none}
.nav-panel a{display:block;padding:10px 14px;color:#222;text-decoration:none;border-radius:8px;font-weight:600}
.nav-panel a:hover,.nav-panel a.active{background:#f6f6f6}
.nav-panel.show{display:block}

.hero .bg{position:relative;min-height:70vh;display:grid;place-items:center;overflow:hidden}
.hero .bg::before{content:"";position:absolute;inset:0;background:#0006;z-index:1}
.hero img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}
.hero .content{position:relative;z-index:2;max-width:900px;margin:0 auto;padding:56px 20px;text-align:center;color:#fff}
.hero h1{font-size:48px;margin:0 0 8px}
.hero .tag{font-size:22px;margin:0 0 12px}
.hero .desc{font-size:18px;opacity:.95;line-height:1.6;margin:0 auto;max-width:760px}
.cta{display:inline-block;background:#fff;color:#000;text-decoration:none;font-weight:800;padding:12px 18px;border-radius:12px}
.store-row{display:flex;gap:16px;justify-content:center;align-items:center;margin:20px 0 0}
.store-row img{height:54px;width:auto;display:block}

.section{max-width:1100px;margin:24px auto;padding:0 16px}
.section-muted{background:var(--muted);padding:24px 16px;margin-top:24px}
h1{font-size:32px;margin:16px 0}
h2{font-size:26px;margin:10px 0}

.grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(250px,1fr));gap:22px}
.card{background:#fff;border-radius:20px;box-shadow:0 10px 25px rgba(0,0,0,.08);padding:18px;text-align:center}
.card .thumb{width:180px;height:180px;border-radius:50%;object-fit:cover;display:block;margin:10px auto;background:#eee}
.card h3{margin:10px 0 8px}
.btn{display:inline-block;background:var(--brand);color:#000;text-decoration:none;padding:10px 14px;border-radius:10px;font-weight:700}

.sheet{position:fixed;inset:0;background:rgba(0,0,0,.45);display:none;align-items:flex-end;z-index:1200}
.sheet.show{display:flex}
.sheet .panel{background:#fff;border-radius:18px 18px 0 0;max-height:90vh;width:100%;max-width:900px;margin:0 auto;overflow:hidden;display:grid;grid-template-rows:auto 1fr}
.sheet header{display:flex;gap:12px;align-items:center;padding:14px 16px;border-bottom:1px solid #eee}
.sheet header img{width:84px;height:84px;border-radius:14px;object-fit:cover}
.sheet header h3{margin:0}
.sheet .body{overflow:auto;padding:12px 16px;line-height:1.65}
.sheet .facts{display:grid;grid-template-columns:1fr 1fr;gap:10px;margin-bottom:10px}
.fact{padding:10px 12px;background:#fafafa;border-radius:10px;border:1px solid #f0f0f0}
.fact b{display:block;margin-bottom:4px;color:#444}

footer{margin:40px 0 60px;text-align:center;color:#777}

@media (max-width: 640px){
  .hero h1{font-size:36px}
  .hero .bg{min-height:78vh}
  .store-row img{height:52px}
  .sheet .facts{grid-template-columns:1fr}
}
