
/* POIndiaGuide — minimal, fast, accessible.
   Approx 6 KB gzipped. No build step required. */
:root {
  --brand: #0a2342;
  --brand-2: #135ba6;
  --accent: #f0a500;
  --bg: #ffffff;
  --fg: #0d0f1a;
  --muted: #4b5563;
  --line: #e5e7eb;
  --max: 1100px;
  --radius: 10px;
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0; color: var(--fg); background: var(--bg);
  font: 16px/1.65 "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}
h1, h2, h3, h4 { font-family: "Merriweather", Georgia, "Times New Roman", serif; line-height: 1.25; color: var(--brand); }
h1 { font-size: clamp(1.7rem, 4.2vw, 2.4rem); margin: 0 0 .6em; }
h2 { font-size: clamp(1.3rem, 2.8vw, 1.7rem); margin: 1.6em 0 .5em; }
h3 { font-size: 1.15rem; margin: 1.2em 0 .4em; }
.h3 { font-size: 1.15rem; font-family: "Merriweather", serif; color: var(--brand); }
.h4 { font-size: 1rem; font-family: "Merriweather", serif; color: var(--brand); margin: 0 0 .4em; }
a { color: var(--brand-2); text-decoration: underline; text-underline-offset: 3px; }
a:hover { color: var(--brand); }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: var(--max); margin: 0 auto; padding: 0 20px; }
.small { font-size: 0.9rem; color: var(--muted); }
.lede { font-size: 1.1rem; color: var(--muted); }

.skip-link { position:absolute; left:-9999px; top:0; padding:8px 12px; background:#000; color:#fff; }
.skip-link:focus { left:8px; top:8px; z-index:100; }

.topbar { background: #fff3cd; color:#664d03; font-size:14px; padding:8px 0; border-bottom:1px solid #f1d271; }

.site-header { position: sticky; top:0; background: rgba(255,255,255,.96); backdrop-filter: blur(6px); border-bottom:1px solid var(--line); z-index:10; }
.nav-inner { display:flex; align-items:center; gap:16px; padding: 12px 20px; }
.brand { display:flex; align-items:center; gap:10px; text-decoration:none; color: var(--brand); font-weight:700; }
.brand img { width: 36px; height: 36px; }
.brand-text { font-family: "Merriweather", serif; }
.main-nav { margin-left:auto; display:flex; gap:18px; flex-wrap:wrap; }
.main-nav a { color: var(--fg); text-decoration:none; font-weight:600; }
.main-nav a:hover { color: var(--brand-2); }
.nav-cta { margin-left: 12px; }

.btn { display:inline-block; padding:10px 18px; border-radius: var(--radius); text-decoration:none; font-weight:700; border:1px solid transparent; transition: transform .1s ease; }
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--brand); color:#fff; }
.btn-primary:hover { background: var(--brand-2); color:#fff; }
.btn-ghost { background:#fff; color: var(--brand); border-color: var(--brand); }
.btn-lg { padding:14px 22px; font-size:1.05rem; }

main.article { padding: 28px 20px 60px; }
.hero { display:grid; gap: 24px; grid-template-columns: 1fr; align-items:center; padding: 24px 0 8px; }
@media (min-width: 880px) { .hero { grid-template-columns: 1.1fr 1fr; gap:48px; } }
.hero-media img { border-radius: var(--radius); box-shadow: 0 10px 30px rgba(10,35,66,.12); }
.hero-cta { display:flex; gap:12px; flex-wrap:wrap; margin: 16px 0 8px; }

.trust-row { display:grid; grid-template-columns: 1fr; gap:12px; margin: 24px 0; padding:16px; border:1px solid var(--line); border-radius:var(--radius); background:#fafbfd; }
@media (min-width: 720px){ .trust-row{ grid-template-columns: repeat(3,1fr); } }
.trust-row .t strong { display:block; color: var(--brand); }
.trust-row .t span { color: var(--muted); font-size:.95rem; }

.cluster .cards { display:grid; grid-template-columns: 1fr; gap:14px; }
@media(min-width:720px){ .cluster .cards { grid-template-columns: repeat(2,1fr); } }
@media(min-width:980px){ .cluster .cards { grid-template-columns: repeat(4,1fr); } }
.card { display:block; padding:18px; border:1px solid var(--line); border-radius:var(--radius); text-decoration:none; color:inherit; background:#fff; transition: border-color .2s; }
.card:hover { border-color: var(--brand-2); }
.card h3 { margin:0 0 .3em; font-size:1.05rem; }

.eat { background:#fafbfd; padding:24px; border-radius:var(--radius); margin: 32px 0; }
.faq details { border:1px solid var(--line); border-radius: var(--radius); padding: 12px 16px; margin: 8px 0; background:#fff; }
.faq summary { cursor:pointer; font-weight:600; color: var(--brand); }
.toc { background:#fafbfd; padding:14px 18px; border-radius:var(--radius); margin: 20px 0 28px; border:1px solid var(--line); }
.toc ol { margin:6px 0 0 20px; padding:0; }
.byline { font-style: normal; color: var(--muted); margin: 0 0 18px; padding-bottom:18px; border-bottom:1px solid var(--line); }
.cta-box { background: #fff8e1; border:1px solid #f3d36a; border-radius: var(--radius); padding: 18px 20px; margin: 28px 0; }

.related { border-top:1px solid var(--line); margin-top:36px; padding-top: 24px; }

.post-card { border-bottom:1px solid var(--line); padding: 18px 0; }
.post-card h2 { margin: 0 0 .3em; font-size:1.2rem; }
.post-card .meta { color: var(--muted); font-size:.9rem; }

.site-footer { background:#0a2342; color:#cfd8e3; margin-top:48px; }
.site-footer .footer-grid { display:grid; grid-template-columns: 1fr; gap: 24px; padding: 36px 20px; }
@media(min-width:800px){ .site-footer .footer-grid { grid-template-columns: repeat(4,1fr); } }
.site-footer h2 { color: #fff; font-size:1rem; margin:0 0 8px; }
.site-footer a { color: #ffd47a; }
.site-footer ul { padding: 0; margin:0; list-style: none; }
.site-footer ul li { padding: 3px 0; }
.risk-strip { font-size:.85rem; padding: 14px 20px; background:#0d2a4f; }
.copy { padding: 14px 20px; font-size:.8rem; color:#8a9bb1; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { transition:none !important; animation:none !important; }
}
