:root{
  --bg: #ffffff;
  --surface: #ffffff;
  --surface2:#f7f7f7;
  --text: #1f2937;
  --muted:#6b7280;
  --primary:#f6b21a;
  --primary2:#ffcc4d;
  --line: rgba(0,0,0,.08);
  --radius: 18px;
  --shadow: 0 8px 22px rgba(0,0,0,.08);
}

*{box-sizing:border-box}

html,body{
  margin:0;
  padding:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial;
}

body{
  background:
    radial-gradient(900px 500px at 20% 0%, rgba(246,178,26,.12), transparent 55%),
    radial-gradient(900px 500px at 90% 10%, rgba(255,204,77,.10), transparent 55%),
    var(--bg);
  color:var(--text);
}

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

.container{
  max-width:1100px;
  margin:0 auto;
  padding:0 16px;
}

.nav{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter: blur(10px);
  background:rgba(255,255,255,.9);
  border-bottom:1px solid var(--line);
}

.nav-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:12px;
}

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

.brand img{
  width:38px;
  height:38px;
  border-radius:12px;
  box-shadow: var(--shadow);
}

.brand b{letter-spacing:.2px}

.links{
  display:flex;
  gap:14px;
  align-items:center;
}

.links a{
  color:var(--muted);
  font-weight:600;
}

.links a:hover{
  color:var(--text);
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:11px 14px;
  border-radius:14px;
  background:linear-gradient(135deg,var(--primary),var(--primary2));
  color:#1b1300;
  font-weight:800;
  border:0;
  cursor:pointer;
}

.btn.outline{
  background:#fff;
  color:var(--text);
  border:1px solid var(--line);
}

.menu-btn{display:none}

@media (max-width: 820px){
  .links{display:none}
  .menu-btn{display:inline-flex}
  .mobile{
    display:none;
    padding:10px 0 16px;
    border-top:1px solid var(--line)
  }
  .mobile a{
    display:block;
    padding:10px 0;
    color:var(--muted);
    font-weight:700
  }
  .mobile a:hover{color:var(--text)}
}

.hero{padding:44px 0 18px}

.hero-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:22px;
  align-items:stretch;
}

@media (max-width: 920px){
  .hero-grid{grid-template-columns:1fr}
}

.card{
  background:#ffffff;
  border:1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card{padding:22px}

.kicker{
  display:inline-flex;
  gap:8px;
  align-items:center;
  color:var(--muted);
  font-weight:700
}

.kicker .dot{
  width:8px;
  height:8px;
  background:var(--primary);
  border-radius:99px;
  box-shadow:0 0 0 4px rgba(246,178,26,.18)
}

h1{
  margin:10px 0 10px;
  font-size:40px;
  line-height:1.15
}

@media (max-width: 520px){
  h1{font-size:30px}
}

p{
  color:var(--muted);
  line-height:1.7;
  margin:0
}

.hero-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:16px
}

.badges{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:12px
}

.badge{
  padding:9px 12px;
  border-radius:999px;
  background:rgba(246,178,26,.12);
  border:1px solid rgba(246,178,26,.25);
  color:#9a6b00;
  font-weight:700;
  font-size:13px;
}

.side{padding:18px}
.side h3{margin:6px 0 10px}

.info{
  display:grid;
  gap:10px;
  margin-top:10px
}

.info .row{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
  padding:12px;
  border-radius:16px;
  background:#fafafa;
  border:1px solid var(--line);
}

.info .row span{color:var(--muted)}

hr.sep{
  border:0;
  border-top:1px solid var(--line);
  margin:22px 0
}

.section{padding:10px 0 30px}
.section h2{margin:0 0 8px;font-size:24px}

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

@media (max-width: 920px){
  .grid{grid-template-columns:repeat(2,1fr)}
}

@media (max-width: 560px){
  .grid{grid-template-columns:1fr}
}

.tile{
  overflow:hidden;
  border-radius:18px;
  border:1px solid var(--line);
  background:#fff;
  cursor:pointer;
}

.tile img{
  width:100%;
  height:190px;
  object-fit:cover;
  display:block;
  transition:transform .25s ease
}

.tile:hover img{transform:scale(1.04)}

.tile .cap{padding:12px}
.tile .cap b{display:block}
.tile .cap small{color:var(--muted)}

.footer{
  padding:22px 0 30px;
  border-top:1px solid var(--line);
  color:var(--muted);
}

.footer a{
  color:var(--text);
  font-weight:700
}

.footer .foot-grid{
  display:fle
