/* ========================================
   KOLHU WALE — Base / Reset / Typography
   ======================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: var(--lh-normal);
  color: var(--color-text);
  background: var(--color-off-white);
  min-height: 100vh;
  overflow-x: hidden;
}

img,
svg,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease-soft);
}

button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
  border: none;
  background: none;
}

button {
  cursor: pointer;
}

ul,
ol {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: var(--lh-tight);
  color: var(--color-forest);
  letter-spacing: 0.01em;
}

h1 { font-size: var(--fs-hero); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h4 { font-size: var(--fs-lg); }

p {
  color: var(--color-text-muted);
}

/* Bilingual helpers */
.urdu,
[lang="ur"],
[dir="rtl"] {
  font-family: var(--font-urdu);
  font-size: 1.05rem;
  line-height: var(--lh-urdu);
}

.urdu-display,
h1 .urdu,
h2 .urdu,
.heading-ur {
  font-family: var(--font-urdu-display);
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
  font-weight: 600;
  line-height: 2;
}

.bilingual-stack {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.bilingual-inline {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: var(--space-2) var(--space-3);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold-dark);
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--color-gold);
}

.section-title {
  margin-bottom: var(--space-3);
}

.section-subtitle {
  max-width: 36rem;
  font-size: var(--fs-md);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-12);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
}

.section-header .section-subtitle {
  margin-inline: auto;
}

.text-center { text-align: center; }
.text-gold { color: var(--color-gold-dark); }
.text-muted { color: var(--color-text-muted); }
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

::selection {
  background: rgba(201, 162, 39, 0.35);
  color: var(--color-forest);
}
