:root{
  --orange:#F5A623;--orange-dk:#E08A0B;--red:#A31515;--red-dk:#7E0F0F;
  --tan:#CE9A4F;--cream:#FDF8F2;--white:#FFFFFF;--title:#1C1C30;--muted:#7B7B7B;--line:#EAE3D9;
  --font:'Poppins','Noto Sans Devanagari',system-ui,sans-serif;
}
*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;scroll-padding-top:96px}
body{background:var(--cream);color:var(--muted);font-family:var(--font);font-size:16px;line-height:1.8}
a{color:inherit;text-decoration:none}
.wrap{width:min(1240px,92vw);margin-inline:auto}

/* header */
.hdr{position:sticky;top:0;z-index:60;background:rgba(255,255,255,.96);backdrop-filter:blur(8px);box-shadow:0 1px 0 var(--line)}
.hdr .wrap{display:flex;align-items:center;gap:16px;height:78px}
.logo{width:48px;height:48px;flex:none;border-radius:50%;display:grid;place-items:center;object-fit:cover;
  background:linear-gradient(145deg,var(--orange),var(--orange-dk));color:var(--red-dk);font-size:24px;
  box-shadow:0 3px 10px rgba(245,166,35,.4)}
.brand{font-size:20px;font-weight:600;color:var(--red);line-height:1.2}
.brand small{display:block;font-size:11px;font-weight:400;color:var(--tan);letter-spacing:.16em;text-transform:uppercase}
.hdr nav{margin-left:auto;display:flex;gap:30px;font-size:15px;font-weight:500}
.hdr nav a{color:#4A4A4A;transition:color .2s}
.hdr nav a:hover{color:var(--orange-dk)}

/* crumb */
.crumb{background:#fff;border-bottom:1px solid var(--line);padding:14px 0}
.crumb .wrap{font-size:13.5px;color:var(--tan);display:flex;gap:8px}
.crumb a{color:#9A7524;font-weight:500}
.crumb a:hover{color:var(--red)}
.crumb .sep{color:#D8C7A6}
.crumb .cur{color:var(--red);font-weight:500}

/* hero */
.tc-hero{position:relative;overflow:hidden;padding:clamp(42px,5.5vw,66px) 0 clamp(30px,4vw,44px);
  background:linear-gradient(180deg,#FFFBF5 0%,var(--cream) 100%);text-align:center}
.tc-hero::before{content:'';position:absolute;width:460px;height:460px;left:50%;top:-210px;transform:translateX(-50%);
  border-radius:50%;background:radial-gradient(circle,rgba(245,166,35,.16) 0%,transparent 68%)}
.tc-hero .wrap{position:relative;z-index:1}
.tc-hero h1{font-size:clamp(26px,3.6vw,38px);font-weight:600;color:var(--red);margin-bottom:10px}
.tc-hero p{font-size:15px;color:var(--tan)}

/* layout */
.tc-sec{padding:clamp(40px,5vw,64px) 0 clamp(60px,7vw,90px)}
.tc-grid{display:grid;grid-template-columns:260px minmax(0,1fr);gap:34px;align-items:start}

/* toc */
.toc{position:sticky;top:96px;background:#fff;border:1px solid var(--line);border-radius:14px;padding:20px}
.toc b{display:block;font-size:13px;font-weight:600;color:var(--red);margin-bottom:12px;letter-spacing:.04em}
.toc a{display:block;font-size:13.5px;color:#7B7B7B;padding:7px 0;border-bottom:1px dashed var(--line)}
.toc a:last-child{border-bottom:0}
.toc a:hover{color:var(--orange-dk)}

/* content */
.tc-block{background:#fff;border:1px solid var(--line);border-radius:14px;padding:26px 28px;margin-bottom:18px}
.tc-block h2{display:flex;align-items:center;gap:10px;font-size:18px;font-weight:600;color:var(--red);margin-bottom:12px}
.tc-block h2 .n{flex:none;width:32px;height:32px;border-radius:50%;display:grid;place-items:center;
  background:linear-gradient(145deg,var(--orange),var(--orange-dk));color:#fff;font-size:14px;font-weight:600}
.tc-block p{font-size:15px;color:#5F5F5F;margin-bottom:10px}
.tc-block ul{margin:6px 0 4px 20px}
.tc-block ul li{font-size:15px;color:#5F5F5F;margin-bottom:8px}

/* highlight callout */
.callout{background:#FFF6E8;border:1px solid #F1D9A8;border-radius:12px;padding:18px 20px;
  display:flex;gap:12px;align-items:flex-start;margin-top:6px}
.callout svg{flex:none;width:22px;height:22px;color:var(--orange-dk);margin-top:2px}
.callout p{font-size:14px;color:#8A6A2A;margin:0}

.updated{font-size:13px;color:var(--tan);text-align:right;margin-bottom:16px}

/* footer */
footer{background:#2A1410;padding:26px 0}
footer .wrap{display:flex;flex-wrap:wrap;gap:16px;justify-content:space-between;align-items:center}
footer p,footer a,footer span{font-size:13px;color:#D8BE9E}
footer a:hover{color:var(--orange)}
.fcontact{display:flex;gap:24px;flex-wrap:wrap}

@media(max-width:960px){
  .hdr nav{display:none}
  .tc-grid{grid-template-columns:1fr}
  .toc{position:static}
}
@media(max-width:560px){
  .tc-block{padding:20px}
}
