/* Gurbani Santhya — shared site styles. Brand: gold #e19f5d on deep blue #013a70. */
:root {
  --blue: #013a70;
  --blue-deep: #012a54;
  --blue-lift: #024a8c;
  --gold: #e19f5d;
  --gold-text: #a1651f;
  --glow: #78aae6;
  --ink: #10202f;
  --muted: #566373;
  --faint: #8894a3;
  --ground: #f5f8fc;
  --surface: #ffffff;
  --line: #e1e8f2;
  --sans: "Hanken Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --gur: "Noto Sans Gurmukhi", var(--sans);
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--ground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a {
  color: var(--gold-text);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-radius: 4px;
}

.gur {
  font-family: var(--gur);
}

/* ---- header ---- */
.site-header {
  background: var(--blue);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 10;
}
.bar {
  max-width: 960px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #fff;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.01em;
}
.brand:hover {
  text-decoration: none;
}
.brand img {
  width: 30px;
  height: 30px;
  border-radius: 7px;
  display: block;
}
.brand .gur {
  color: var(--gold);
  font-weight: 600;
  font-size: 15px;
}
nav.top {
  margin-left: auto;
  display: flex;
  gap: 22px;
}
nav.top a {
  color: #d7e4f2;
  font-size: 14.5px;
  font-weight: 500;
}
nav.top a:hover {
  color: #fff;
  text-decoration: none;
}
nav.top a[aria-current="page"] {
  color: var(--gold);
}

/* ---- content ---- */
main {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 24px 24px;
}
main.wide {
  max-width: 960px;
}

h1 {
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 8px;
  text-wrap: balance;
}
h2 {
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 36px 0 10px;
}
h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 24px 0 6px;
}
p {
  margin: 0 0 14px;
  color: #26333f;
}
.lead {
  font-size: 18px;
  color: var(--muted);
}
.eyebrow {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-text);
  font-weight: 700;
  margin: 0 0 12px;
}
.muted {
  color: var(--muted);
}
small.updated {
  color: var(--faint);
  font-size: 13px;
}

ul {
  margin: 0 0 16px;
  padding-left: 20px;
}
li {
  margin: 0 0 8px;
  color: #26333f;
}

/* ---- legal / doc layout ---- */
.doc h2 {
  padding-top: 8px;
  border-top: 1px solid var(--line);
}
.doc h2:first-of-type {
  border-top: none;
}
.contact-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: 0 10px 10px 0;
  padding: 16px 18px;
  margin: 8px 0 20px;
}
.contact-card p {
  margin: 0 0 6px;
}
.contact-card p:last-child {
  margin: 0;
}

/* ---- footer ---- */
.site-footer {
  border-top: 1px solid var(--line);
  background: var(--surface);
  margin-top: 56px;
}
.foot {
  max-width: 960px;
  margin: 0 auto;
  padding: 26px 24px 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  align-items: center;
  font-size: 13.5px;
  color: var(--muted);
}
.foot nav {
  display: flex;
  gap: 20px;
}
.foot .attr {
  flex-basis: 100%;
  color: var(--faint);
  font-size: 12.5px;
  margin-top: 4px;
}
@media screen and (max-width: 640px) {
  .logo-text {
    font-size: 13px;
  }
}
