:root {
  --ink: #10141f;
  --graphite: #202635;
  --steel: #485164;
  --mist: #778195;
  --line: #dfe3ea;
  --paper: #f7f8fa;
  --white: #ffffff;
  --gold: #b89454;
  --gold-2: #d3b06f;
  --green: #2d6f62;
  --blue: #28506f;
  --shadow: 0 20px 60px rgba(16, 20, 31, 0.12);
  --display: "Cormorant Garamond", Georgia, serif;
  --body: "Outfit", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--graphite);
  font-family: var(--body);
  font-weight: 300;
  line-height: 1.65;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(16, 20, 31, 0.86);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1180px;
  margin: 0 auto;
  padding: 16px 24px;
}

.brand {
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(1.28rem, 2.5vw, 1.65rem);
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.1;
  text-decoration: none;
}

.brand span {
  color: var(--gold-2);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: #e8edf5;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--gold-2);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  cursor: pointer;
}

.menu-toggle svg {
  width: 22px;
  height: 22px;
}

.hero {
  position: relative;
  min-height: 94svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 20, 31, 0.92), rgba(16, 20, 31, 0.62) 46%, rgba(16, 20, 31, 0.16)),
    linear-gradient(0deg, rgba(16, 20, 31, 0.92), rgba(16, 20, 31, 0) 30%);
  z-index: 1;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 128px 0 72px;
}

.eyebrow {
  color: var(--gold-2);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  margin: 0 0 18px;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1,
.section-title,
.article-title {
  font-family: var(--display);
  letter-spacing: 0;
  line-height: 1.05;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3.4rem, 8vw, 6.8rem);
  font-weight: 650;
}

.hero h1 span {
  color: var(--gold-2);
  font-style: italic;
  font-weight: 550;
}

.hero-copy {
  max-width: 650px;
  margin: 26px 0 0;
  color: #e0e5ec;
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  padding: 13px 20px;
  color: var(--ink);
  background: var(--gold-2);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.button svg {
  width: 16px;
  height: 16px;
}

.button:hover {
  background: var(--white);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.32);
  background: transparent;
  color: var(--white);
}

.button.secondary:hover {
  border-color: var(--gold-2);
  color: var(--gold-2);
}

.signal-strip {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.signals {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1180px;
  margin: 0 auto;
}

.signal {
  padding: 26px 24px;
  border-right: 1px solid var(--line);
}

.signal:last-child {
  border-right: 0;
}

.signal strong {
  display: block;
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.72rem;
  line-height: 1.1;
}

.signal span {
  display: block;
  margin-top: 7px;
  color: var(--steel);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

section {
  padding: 88px 24px;
}

.section-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(36px, 6vw, 76px);
  align-items: start;
}

.section-title {
  max-width: 620px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.25rem, 5vw, 4.1rem);
  font-weight: 600;
}

.lead {
  margin: 0;
  color: var(--steel);
  font-size: 1.08rem;
}

.body-copy p {
  margin: 0 0 20px;
  color: var(--steel);
  font-size: 1rem;
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 38px;
}

.focus-card,
.report-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 1px 0 rgba(16, 20, 31, 0.03);
}

.focus-card {
  padding: 28px;
}

.focus-icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: var(--white);
  background: var(--blue);
}

.focus-card:nth-child(2) .focus-icon {
  background: var(--green);
}

.focus-card:nth-child(3) .focus-icon {
  background: var(--gold);
}

.focus-icon svg {
  width: 22px;
  height: 22px;
}

.focus-card h3 {
  margin: 22px 0 10px;
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.55rem;
  line-height: 1.1;
}

.focus-card p {
  margin: 0;
  color: var(--steel);
  font-size: 0.95rem;
}

.approach {
  background: var(--ink);
  color: var(--white);
}

.approach .section-title {
  color: var(--white);
}

.approach .lead,
.approach p {
  color: #cbd3df;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 44px;
  background: rgba(255, 255, 255, 0.16);
}

.step {
  padding: 32px;
  background: var(--ink);
}

.step span {
  color: var(--gold-2);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.step h3 {
  margin: 18px 0 10px;
  font-family: var(--display);
  font-size: 1.55rem;
}

.step p {
  margin: 0;
}

.insights-preview {
  background: var(--paper);
}

.report-card {
  display: grid;
  grid-template-columns: 170px 1fr auto;
  gap: 28px;
  align-items: center;
  margin-top: 34px;
  padding: 28px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.report-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.date-box {
  border-left: 3px solid var(--gold);
  padding-left: 18px;
  color: var(--mist);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.report-card h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(1.6rem, 3vw, 2.15rem);
  line-height: 1.12;
}

.report-card p {
  margin: 0;
  color: var(--steel);
}

.arrow {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.contact {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(36px, 6vw, 76px);
}

.contact-detail {
  margin-top: 28px;
}

.contact-detail h3 {
  margin: 22px 0 4px;
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.32rem;
}

.contact-detail p,
.contact-detail a {
  margin: 0;
  color: var(--steel);
  text-decoration: none;
}

.contact-detail a:hover {
  color: var(--gold);
}

.contact-form {
  display: grid;
  gap: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field label {
  display: block;
  margin-bottom: 7px;
  color: var(--steel);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  outline: none;
}

.field textarea {
  min-height: 132px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184, 148, 84, 0.18);
}

.form-note {
  margin: 0;
  color: var(--mist);
  font-size: 0.9rem;
}

.form-success,
.form-error {
  display: none;
  padding: 14px 16px;
  border-radius: 8px;
  font-size: 0.94rem;
}

.form-success {
  border: 1px solid rgba(45, 111, 98, 0.25);
  background: rgba(45, 111, 98, 0.08);
  color: var(--green);
}

.form-error {
  border: 1px solid rgba(162, 72, 63, 0.25);
  background: rgba(162, 72, 63, 0.08);
  color: #8d342b;
}

.site-footer {
  padding: 34px 24px;
  background: var(--ink);
  color: #cbd3df;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1180px;
  margin: 0 auto;
  gap: 20px;
}

.footer-inner p {
  margin: 0;
  font-size: 0.84rem;
}

.page-hero {
  padding: 142px 24px 72px;
  background:
    linear-gradient(120deg, rgba(16, 20, 31, 0.96), rgba(40, 80, 111, 0.82)),
    url("/assets/nazir-infrastructure.png") center/cover;
  color: var(--white);
  text-align: center;
}

.page-hero h1 {
  margin: 0 auto;
  max-width: 760px;
  font-size: clamp(2.8rem, 7vw, 5.2rem);
}

.page-hero h1 span {
  color: var(--gold-2);
  font-style: italic;
}

.page-hero p {
  max-width: 680px;
  margin: 20px auto 0;
  color: #d9e0ea;
  font-size: 1.04rem;
}

.reports-list {
  display: grid;
  gap: 18px;
}

.article {
  padding: 72px 24px;
  background: var(--white);
}

.article-layout {
  max-width: 920px;
  margin: 0 auto;
}

.back-link {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.article-title {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 600;
}

.article-meta {
  margin: 18px 0 34px;
  color: var(--mist);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 34px 0;
}

.summary-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: var(--paper);
}

.summary-item strong {
  display: block;
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.45rem;
  line-height: 1.1;
}

.summary-item span {
  display: block;
  margin-top: 6px;
  color: var(--steel);
  font-size: 0.86rem;
}

.article-content h2 {
  margin: 38px 0 12px;
  color: var(--ink);
  font-family: var(--display);
  font-size: 2rem;
  line-height: 1.15;
}

.article-content p,
.article-content li {
  color: var(--steel);
  font-size: 1rem;
}

.article-content ul {
  margin: 0;
  padding-left: 20px;
}

@media (max-width: 860px) {
  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: fixed;
    inset: 76px 16px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background: rgba(16, 20, 31, 0.98);
    padding: 8px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    display: block;
    padding: 14px 12px;
  }

  .hero {
    min-height: 90svh;
  }

  .hero::before {
    background: linear-gradient(0deg, rgba(16, 20, 31, 0.94), rgba(16, 20, 31, 0.55));
  }

  .hero-inner {
    width: min(100% - 32px, 1180px);
    padding: 112px 0 56px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .signals,
  .focus-grid,
  .steps,
  .summary-grid {
    grid-template-columns: 1fr;
  }

  .signal {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .signal:last-child {
    border-bottom: 0;
  }

  section {
    padding: 64px 18px;
  }

  .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .report-card {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .arrow {
    display: none;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .article {
    padding: 48px 18px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .nav {
    padding: 14px 16px;
  }

  .brand {
    max-width: 250px;
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 4.2rem);
  }

  .page-hero {
    padding-top: 122px;
  }
}
