/* =========================================================
   Hikmat Baliram Udhan — Official Website
   Designed and Managed by Creaa Designs
   ========================================================= */

/* -----------  RESET & ROOT  ----------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --saffron: #ef7a1b;
  --saffron-deep: #c85d0a;
  --saffron-soft: #ffb074;
  --gold: #c89b3c;
  --gold-light: #e6c673;
  --charcoal: #111315;
  --charcoal-2: #1a1d22;
  --charcoal-3: #24282e;
  --ink: #0b0d10;
  --grey-900: #2c3139;
  --grey-700: #545a63;
  --grey-500: #8a8f98;
  --grey-300: #d7d9de;
  --grey-100: #f2f3f5;
  --cream: #faf7f2;
  --white: #ffffff;

  --font-display: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  --font-sans: "Inter", "Helvetica Neue", Arial, sans-serif;

  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 22px;
  --shadow-soft: 0 20px 60px rgba(15, 17, 20, 0.12);
  --shadow-hard: 0 30px 80px rgba(15, 17, 20, 0.28);

  --max: 1280px;
  --container-pad: clamp(20px, 4vw, 56px);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s var(--ease);
}

button {
  font-family: inherit;
  border: none;
  cursor: pointer;
  background: none;
}

/* Typography */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.2rem, 5vw, 4.4rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); }
h4 { font-size: 1.15rem; }

p { color: var(--grey-700); font-size: 1.02rem; }

.eyebrow {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--saffron);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--saffron);
}

.section-title {
  margin: 14px 0 18px;
}

/* Layout */
.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}

.section {
  padding: clamp(70px, 9vw, 130px) 0;
}
.section--dark {
  background: var(--ink);
  color: var(--grey-300);
}
.section--dark h1,
.section--dark h2,
.section--dark h3 {
  color: var(--white);
}
.section--dark p { color: rgba(255,255,255,0.72); }

.section--cream { background: var(--cream); }
.section--white { background: var(--white); }

/* =========  NAVIGATION  ========= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  background: rgba(11, 13, 16, 0.85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: padding 0.3s var(--ease), background 0.3s var(--ease);
}
.nav.scrolled { padding: 12px 0; background: rgba(11, 13, 16, 0.96); }

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
}
.brand__mark {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--saffron) 0%, var(--saffron-deep) 100%);
  display: grid; place-items: center;
  color: #fff; font-weight: 800;
  font-family: var(--font-display);
  font-size: 1.1rem;
  box-shadow: 0 8px 22px rgba(239,122,27,0.35);
}
.brand__name {
  display: flex; flex-direction: column; line-height: 1.05;
}
.brand__name strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.brand__name span {
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-top: 2px;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav__menu a {
  display: inline-block;
  padding: 10px 14px;
  font-size: 0.89rem;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  letter-spacing: 0.02em;
  position: relative;
}
.nav__menu a:hover, .nav__menu a.active { color: var(--white); }
.nav__menu a::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px;
  bottom: 4px;
  height: 2px;
  background: var(--saffron);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease);
}
.nav__menu a:hover::after, .nav__menu a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  background: var(--saffron);
  color: #fff;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}
.nav__cta:hover { background: var(--saffron-deep); transform: translateY(-2px); }

.nav__toggle {
  display: none;
  width: 44px; height: 44px;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  align-items: center; justify-content: center;
}
.nav__toggle span {
  display: block; width: 20px; height: 2px; background: #fff;
  position: relative;
}
.nav__toggle span::before,
.nav__toggle span::after {
  content: ""; position: absolute; left: 0; width: 20px; height: 2px; background: #fff;
  transition: transform 0.3s var(--ease), top 0.3s var(--ease);
}
.nav__toggle span::before { top: -7px; }
.nav__toggle span::after { top: 7px; }
.nav.open .nav__toggle span { background: transparent; }
.nav.open .nav__toggle span::before { top: 0; transform: rotate(45deg); }
.nav.open .nav__toggle span::after { top: 0; transform: rotate(-45deg); }

/* =========  BUTTONS  ========= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.btn--primary {
  background: var(--saffron);
  color: #fff;
  box-shadow: 0 14px 30px rgba(239,122,27,0.35);
}
.btn--primary:hover { background: var(--saffron-deep); transform: translateY(-3px); }
.btn--ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.35);
}
.btn--ghost:hover { background: #fff; color: var(--ink); border-color: #fff; }
.btn--dark {
  background: var(--ink);
  color: #fff;
}
.btn--dark:hover { background: var(--saffron); }

/* =========  PAGE HERO (inner pages)  ========= */
.page-hero {
  position: relative;
  padding: 190px 0 100px;
  background: linear-gradient(180deg, var(--ink) 0%, var(--charcoal-2) 100%);
  color: #fff;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 50% at 85% 20%, rgba(239,122,27,0.28) 0%, transparent 60%),
    radial-gradient(50% 70% at 10% 100%, rgba(200,155,60,0.18) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: center;
}
.page-hero h1 { color: #fff; }
.page-hero__crumbs {
  font-size: 0.76rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 22px;
}
.page-hero__crumbs a:hover { color: #fff; }
.page-hero p {
  color: rgba(255,255,255,0.75);
  margin-top: 18px;
  max-width: 56ch;
  font-size: 1.05rem;
}
.page-hero__media {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-hard);
  border: 1px solid rgba(255,255,255,0.06);
}
.page-hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 15%;
}
.page-hero__media::after {
  content: "";
  position: absolute; inset: auto 0 0 0; height: 45%;
  background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
}

/* =========  FOOTER  ========= */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.72);
  padding: 80px 0 30px;
  position: relative;
}
.footer::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--saffron) 0%, var(--gold) 50%, var(--saffron-deep) 100%);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer h5 {
  font-family: var(--font-sans);
  color: #fff;
  font-size: 0.85rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 600;
}
.footer__brand p { font-size: 0.95rem; line-height: 1.8; max-width: 36ch; }
.footer__brand .brand { margin-bottom: 18px; }

.footer ul { list-style: none; display: grid; gap: 12px; }
.footer a:hover { color: var(--saffron); }
.footer li a { font-size: 0.92rem; }

.footer__contact li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.92rem;
  line-height: 1.5;
}

.footer__social {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}
.footer__social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: grid; place-items: center;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease), color 0.3s var(--ease);
  color: #fff;
}
.footer__social a:hover { background: var(--saffron); color: #fff; transform: translateY(-3px); }
.footer__social svg { width: 18px; height: 18px; fill: currentColor; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
}
.footer__bottom a { color: var(--gold-light); }
.footer__bottom a:hover { color: #fff; }

/* =========  PASSWORD GATE  ========= */
.gate {
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: 40px 20px;
  background:
    linear-gradient(135deg, rgba(11,13,16,0.85) 0%, rgba(11,13,16,0.75) 100%),
    url("../images/udhan-hikmat-baliram.jpg") center/cover no-repeat;
  position: relative;
  overflow: hidden;
}
.gate::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(50% 60% at 100% 0%, rgba(239,122,27,0.35) 0%, transparent 60%),
    radial-gradient(40% 50% at 0% 100%, rgba(200,155,60,0.28) 0%, transparent 60%);
}
.gate__card {
  position: relative;
  width: min(460px, 100%);
  padding: 52px 44px 46px;
  background: rgba(18, 20, 24, 0.82);
  backdrop-filter: blur(26px);
  -webkit-backdrop-filter: blur(26px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  text-align: center;
  color: #fff;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  animation: gateIn 0.9s var(--ease) both;
}
@keyframes gateIn {
  from { opacity: 0; transform: translateY(24px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.gate__badge {
  width: 60px; height: 60px;
  margin: 0 auto 22px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--saffron), var(--saffron-deep));
  color: #fff;
  box-shadow: 0 14px 34px rgba(239,122,27,0.45);
}
.gate h1 {
  color: #fff;
  font-size: 1.9rem;
  margin-bottom: 10px;
}
.gate__sub {
  color: var(--gold-light);
  font-size: 0.76rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 32px;
  font-family: var(--font-sans);
  font-weight: 500;
}
.gate form {
  display: grid;
  gap: 14px;
}
.gate__field {
  position: relative;
  display: flex;
  align-items: center;
}
.gate__field input {
  width: 100%;
  padding: 16px 50px 16px 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  color: #fff;
  border-radius: 12px;
  font-size: 1rem;
  font-family: var(--font-sans);
  letter-spacing: 0.12em;
  outline: none;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.gate__field input::placeholder { color: rgba(255,255,255,0.45); letter-spacing: 0.06em; }
.gate__field input:focus { border-color: var(--saffron); background: rgba(255,255,255,0.1); }
.gate__toggle {
  position: absolute; right: 12px;
  color: rgba(255,255,255,0.6);
  padding: 6px;
  display: grid; place-items: center;
}
.gate__toggle:hover { color: #fff; }
.gate button[type="submit"] {
  width: 100%;
  padding: 16px;
  background: var(--saffron);
  color: #fff;
  border-radius: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.84rem;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
  box-shadow: 0 14px 30px rgba(239,122,27,0.4);
}
.gate button[type="submit"]:hover { background: var(--saffron-deep); transform: translateY(-2px); }
.gate__error {
  font-size: 0.82rem;
  color: #ff8787;
  margin-top: 10px;
  min-height: 18px;
  letter-spacing: 0.02em;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.3s, transform 0.3s;
}
.gate__error.show { opacity: 1; transform: translateY(0); }
.gate.shake .gate__card { animation: shake 0.5s; }
@keyframes shake {
  0%,100% { transform: translateX(0); }
  25% { transform: translateX(-8px); }
  50% { transform: translateX(8px); }
  75% { transform: translateX(-4px); }
}
.gate__hint {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* =========  HERO (homepage)  ========= */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  padding: 180px 0 100px;
  background: var(--ink);
  color: #fff;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(40% 55% at 90% 15%, rgba(239,122,27,0.22), transparent 65%),
    radial-gradient(50% 70% at 0% 100%, rgba(200,155,60,0.18), transparent 65%),
    linear-gradient(180deg, #0b0d10 0%, #181b20 100%);
}
.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 70px;
  align-items: center;
}
.hero__content .eyebrow { color: var(--gold-light); }
.hero__content .eyebrow::before { background: var(--gold-light); }
.hero h1 {
  color: #fff;
  margin: 22px 0 26px;
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 1.02;
}
.hero h1 .accent {
  background: linear-gradient(90deg, var(--saffron) 0%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
}
.hero__tag {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--gold-light);
  margin-bottom: 14px;
}
.hero__desc {
  color: rgba(255,255,255,0.75);
  font-size: 1.08rem;
  max-width: 52ch;
  margin-bottom: 38px;
}
.hero__cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero__media {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-hard);
}
.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 18%;
  transition: transform 1.2s var(--ease);
}
.hero__media:hover img { transform: scale(1.04); }
.hero__media::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(11,13,16,0.55) 100%);
  z-index: 1;
}
.hero__badge {
  position: absolute;
  left: -26px;
  bottom: 40px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 22px 16px 16px;
  background: rgba(255,255,255,0.98);
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
  color: var(--ink);
  max-width: 260px;
}
.hero__badge .dot {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--saffron), var(--saffron-deep));
  display: grid; place-items: center; color: #fff; font-weight: 700;
  flex-shrink: 0;
}
.hero__badge strong { display: block; font-family: var(--font-display); font-size: 1.1rem; }
.hero__badge span { font-size: 0.74rem; color: var(--grey-500); letter-spacing: 0.04em; }

.hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.hero__scroll::after {
  content: "";
  width: 1px; height: 36px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.5));
  animation: scrollDash 2s infinite;
}
@keyframes scrollDash {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* =========  COUNTERS  ========= */
.counters {
  padding: 0;
  margin-top: -80px;
  position: relative;
  z-index: 3;
}
.counters__inner {
  background: #fff;
  border-radius: 26px;
  padding: 46px 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--grey-100);
}
.counter {
  text-align: center;
  padding: 10px 20px;
  border-right: 1px solid var(--grey-100);
}
.counter:last-child { border-right: none; }
.counter__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--ink);
  line-height: 1;
}
.counter__num sup { color: var(--saffron); font-size: 0.55em; margin-left: 4px; }
.counter__label {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey-500);
  margin-top: 10px;
  font-weight: 500;
}

/* =========  GENERIC TWO COL  ========= */
.twocol {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.twocol--reverse .twocol__media { order: 2; }
.twocol__media {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.twocol__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.twocol__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.25) 100%);
}
.twocol__tag {
  position: absolute; left: 20px; bottom: 20px;
  background: rgba(255,255,255,0.95);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 600;
}

/* =========  FEATURE CARDS  ========= */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 50px;
}
.feature {
  background: #fff;
  border: 1px solid var(--grey-100);
  padding: 34px 28px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.feature__icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(239,122,27,0.12), rgba(200,155,60,0.12));
  color: var(--saffron);
  display: grid; place-items: center;
  margin-bottom: 22px;
}
.feature h3 { margin-bottom: 10px; }
.feature p { font-size: 0.95rem; }
.feature__num {
  position: absolute;
  right: 22px; top: 18px;
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: rgba(17,19,21,0.04);
  font-weight: 700;
}

/* =========  TIMELINE  ========= */
.timeline {
  position: relative;
  max-width: 920px;
  margin: 50px auto 0;
  padding-left: 40px;
}
.timeline::before {
  content: "";
  position: absolute; left: 12px; top: 10px; bottom: 10px;
  width: 2px;
  background: linear-gradient(180deg, var(--saffron), var(--gold));
}
.timeline__item {
  position: relative;
  padding: 24px 0 36px 40px;
}
.timeline__item::before {
  content: "";
  position: absolute; left: -4px; top: 30px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--saffron);
  box-shadow: 0 0 0 6px rgba(239,122,27,0.14);
}
.timeline__year {
  font-family: var(--font-display);
  color: var(--saffron);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.08em;
}
.timeline h3 { margin-top: 6px; margin-bottom: 10px; }

/* =========  ACHIEVEMENT STATS  ========= */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 50px;
}
.stat {
  background: var(--charcoal-2);
  border-radius: 18px;
  padding: 28px 24px;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.5s var(--ease), background 0.5s var(--ease);
}
.stat:hover { transform: translateY(-6px); background: var(--charcoal-3); }
.stat__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.6rem;
  color: var(--saffron);
  line-height: 1;
}
.stat__num sup { font-size: 0.5em; }
.stat__label {
  margin-top: 12px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.02em;
}

/* =========  WORK CARDS  ========= */
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}
.work-card {
  background: #fff;
  border-radius: 22px;
  padding: 36px 30px;
  border: 1px solid var(--grey-100);
  position: relative;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s var(--ease);
}
.work-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.08);
  border-color: var(--saffron-soft);
}
.work-card__icon {
  width: 64px; height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--saffron) 0%, var(--saffron-deep) 100%);
  display: grid; place-items: center;
  color: #fff;
  margin-bottom: 22px;
  box-shadow: 0 12px 28px rgba(239,122,27,0.28);
}
.work-card h3 { margin-bottom: 10px; }
.work-card ul { list-style: none; padding: 0; margin-top: 14px; }
.work-card ul li {
  font-size: 0.9rem;
  color: var(--grey-700);
  padding: 8px 0;
  border-top: 1px dashed var(--grey-100);
  display: flex; gap: 8px;
}
.work-card ul li::before {
  content: "◆"; color: var(--gold); font-size: 0.7rem; margin-top: 4px;
}

/* =========  GALLERY  ========= */
.gallery-masonry {
  columns: 3;
  column-gap: 18px;
  margin-top: 40px;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 18px;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: #111;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.7s var(--ease), filter 0.4s var(--ease);
}
.gallery-item::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(11,13,16,0.55) 100%);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
  z-index: 1;
}
.gallery-item:hover::before { opacity: 1; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item__meta {
  position: absolute;
  left: 20px; bottom: 20px;
  color: #fff;
  z-index: 2;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.gallery-item:hover .gallery-item__meta { opacity: 1; transform: translateY(0); }
.gallery-item__meta strong { display: block; font-family: var(--font-display); font-size: 1.1rem; }
.gallery-item__meta span {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
}

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(5,6,8,0.94);
  z-index: 500;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
  backdrop-filter: blur(6px);
}
.lightbox.open { display: flex; animation: fadeIn 0.3s var(--ease); }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 14px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.7);
}
.lightbox__close, .lightbox__nav {
  position: absolute;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: #fff;
  display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,0.15);
  transition: background 0.3s var(--ease);
}
.lightbox__close:hover,
.lightbox__nav:hover { background: var(--saffron); }
.lightbox__close { top: 30px; right: 30px; }
.lightbox__nav--prev { left: 30px; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: 30px; top: 50%; transform: translateY(-50%); }

/* =========  CONSTITUENCY  ========= */
.info-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 50px;
  border: 1px solid var(--grey-100);
  border-radius: 20px;
  background: #fff;
  overflow: hidden;
}
.info-strip__cell {
  padding: 36px 28px;
  border-right: 1px solid var(--grey-100);
}
.info-strip__cell:last-child { border-right: none; }
.info-strip__value {
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--ink);
  font-weight: 700;
}
.info-strip__label {
  font-size: 0.74rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--grey-500);
  margin-top: 8px;
}

/* =========  VISION TILES  ========= */
.vision-tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 50px;
}
.vision-tile {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: 20px;
  overflow: hidden;
  color: #fff;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(180deg, rgba(11,13,16,0.25) 0%, rgba(11,13,16,0.9) 100%);
  border: 1px solid rgba(255,255,255,0.06);
}
.vision-tile::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,13,16,0.2) 0%, rgba(11,13,16,0.9) 100%);
  z-index: -1;
}
.vision-tile--saffron {
  background: linear-gradient(160deg, #ff9648 0%, #c85d0a 100%);
}
.vision-tile--charcoal {
  background: linear-gradient(160deg, var(--charcoal-3) 0%, var(--ink) 100%);
}
.vision-tile--gold {
  background: linear-gradient(160deg, #e6c673 0%, #8b6b22 100%);
}
.vision-tile--cream {
  background: linear-gradient(160deg, #faf7f2 0%, #e7e1d6 100%);
  color: var(--ink);
}
.vision-tile__num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  opacity: 0.45;
  margin-bottom: auto;
}
.vision-tile h3 {
  color: inherit;
  font-size: 1.35rem;
  margin-bottom: 8px;
}
.vision-tile p { color: inherit; font-size: 0.88rem; opacity: 0.9; }

/* =========  CONTACT  ========= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
  margin-top: 40px;
}
.contact-info {
  background: var(--ink);
  color: #fff;
  padding: 50px 44px;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}
.contact-info::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 60% at 100% 0%, rgba(239,122,27,0.25), transparent 60%),
    radial-gradient(40% 50% at 0% 100%, rgba(200,155,60,0.2), transparent 60%);
  pointer-events: none;
}
.contact-info h2 { color: #fff; position: relative; }
.contact-info p {
  color: rgba(255,255,255,0.7);
  position: relative;
  margin: 14px 0 34px;
}
.contact-list { list-style: none; display: grid; gap: 22px; position: relative; }
.contact-list li {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.contact-list li:last-child { border-bottom: none; padding-bottom: 0; }
.contact-list .ic {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--saffron), var(--saffron-deep));
  display: grid; place-items: center;
  color: #fff;
  flex-shrink: 0;
}
.contact-list strong { display: block; color: #fff; font-family: var(--font-sans); font-size: 0.76rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 6px; }
.contact-list a, .contact-list span {
  color: rgba(255,255,255,0.92);
  font-size: 1.05rem;
  font-family: var(--font-display);
}
.contact-list a:hover { color: var(--saffron); }

.contact-form {
  background: #fff;
  padding: 48px 44px;
  border-radius: 24px;
  border: 1px solid var(--grey-100);
  box-shadow: var(--shadow-soft);
}
.contact-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--grey-500);
  margin-bottom: 8px;
  font-weight: 600;
}
.field input,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--grey-300);
  border-radius: 10px;
  background: var(--white);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--saffron);
  box-shadow: 0 0 0 4px rgba(239,122,27,0.12);
}
.field textarea { resize: vertical; min-height: 130px; }
.form-status {
  margin-top: 12px;
  font-size: 0.85rem;
  color: var(--saffron);
  min-height: 20px;
}

/* =========  CTA BAND  ========= */
.cta-band {
  position: relative;
  padding: 80px 0;
  background:
    linear-gradient(135deg, rgba(239,122,27,0.96) 0%, rgba(200,93,10,0.96) 100%),
    url("../images/hikmat-udhan-ghansavangi-won-ghansawangi-a_2024111346942.jpg") center/cover no-repeat fixed;
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.cta-band h2 { color: #fff; max-width: 22ch; margin: 0 auto 18px; }
.cta-band p { color: rgba(255,255,255,0.9); max-width: 60ch; margin: 0 auto 28px; }

/* =========  QUOTE BLOCK  ========= */
.quote {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}
.quote__mark {
  font-family: var(--font-display);
  font-size: 6rem;
  line-height: 1;
  color: var(--saffron);
  opacity: 0.35;
}
.quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-style: italic;
  line-height: 1.35;
  color: var(--ink);
  margin-bottom: 26px;
}
.quote cite {
  font-style: normal;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--grey-500);
}
.section--dark .quote blockquote { color: #fff; }
.section--dark .quote cite { color: var(--gold-light); }

/* =========  ANIMATION REVEAL  ========= */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-2 { transition-delay: 0.1s; }
.reveal-delay-3 { transition-delay: 0.2s; }
.reveal-delay-4 { transition-delay: 0.3s; }

/* =========  RESPONSIVE  ========= */
@media (max-width: 1100px) {
  .hero__grid, .twocol, .contact-grid, .page-hero__inner { grid-template-columns: 1fr; }
  .twocol--reverse .twocol__media { order: 0; }
  .hero__media, .page-hero__media { max-width: 520px; margin: 20px auto 0; aspect-ratio: 4/5; }
  .features, .work-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-grid, .info-strip, .vision-tiles { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .gallery-masonry { columns: 2; }
  .info-strip__cell:nth-child(2) { border-right: none; }
  .info-strip__cell:nth-child(1),
  .info-strip__cell:nth-child(2) { border-bottom: 1px solid var(--grey-100); }
}

@media (max-width: 780px) {
  .nav__menu { display: none; }
  .nav__toggle { display: inline-flex; }
  .nav__cta { display: none; }
  .nav.open .nav__menu {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px 20px 22px;
    background: rgba(11,13,16,0.98);
    border-top: 1px solid rgba(255,255,255,0.06);
  }
  .nav.open .nav__menu a {
    padding: 14px 8px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .counters__inner { grid-template-columns: repeat(2, 1fr); gap: 6px; padding: 20px; }
  .counter { padding: 14px; border-right: none; border-bottom: 1px solid var(--grey-100); }
  .counter:nth-child(odd) { border-right: 1px solid var(--grey-100); }
  .counter:nth-child(n+3) { border-bottom: none; }

  .features, .work-grid,
  .stat-grid, .info-strip, .vision-tiles,
  .footer__grid, .contact-form .row {
    grid-template-columns: 1fr;
  }
  .info-strip__cell { border-right: none; border-bottom: 1px solid var(--grey-100); }
  .info-strip__cell:last-child { border-bottom: none; }

  .gallery-masonry { columns: 1; }

  .contact-info, .contact-form { padding: 36px 26px; }
  .hero { padding: 150px 0 80px; }
  .page-hero { padding: 150px 0 70px; }
}

/* focus outlines */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--saffron);
  outline-offset: 3px;
  border-radius: 6px;
}

/* =========  CONSTITUENCY STRIP GRID  ========= */
.constituency-strip {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 240px 240px;
  gap: 16px;
  margin-top: 40px;
}
.constituency-strip > *:first-child {
  grid-row: 1 / span 2;
  border-radius: 20px;
  overflow: hidden;
}
.constituency-strip > * {
  border-radius: 20px;
  overflow: hidden;
}
.constituency-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 900px) {
  .constituency-strip {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 200px);
  }
  .constituency-strip > *:first-child {
    grid-row: auto;
    grid-column: 1 / -1;
    height: 260px;
  }
}
@media (max-width: 560px) {
  .constituency-strip {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 220px);
  }
  .constituency-strip > *:first-child {
    height: auto;
  }
}
